All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.mintern.functions.unary.IntToShort Maven / Gradle / Ivy

There is a newer version: 2.0
Show newest version
package net.mintern.functions.unary;

/**
 * An operation of type {@code (int) -> short}.
 *
 */
@FunctionalInterface
public interface IntToShort extends
        net.mintern.functions.unary.checked.IntToShortE {

    /**
     * Returns a wrapped version of {@code f} that uses {@code toRuntime} to convert any checked
     * {@code Exception} to a {@code RuntimeException}.
     *
     * @param  the {@code Exception} type that the operation may throw
     * @param toRuntime if a checked exception is thrown from
     *      {@link net.mintern.functions.unary.checked.IntToShortE#call}, then this function
     *      is called in in order to convert it to a {@code RuntimeException}
     * @param f the operation to wrap
     * @return a wrapped version of {@code f} that does not throw checked exceptions
     */
    @SuppressWarnings("unchecked")
    static  IntToShort unchecked(
            java.util.function.Function toRuntime,
            net.mintern.functions.unary.checked.IntToShortE f) {
        return (i) -> {
            try {
                return f.call(i);
            } catch (RuntimeException e) {
                throw e;
            } catch (Exception e) {
                throw toRuntime.apply((E) e);
            }
        };
    }

    /**
     * Returns a wrapped version of {@code f} that wraps any checked {@code Exception} with a
     * {@code RuntimeException}.
     *
     * @param  the {@code Exception} type that the operation may throw
     * @param f the operation to wrap
     * @return a wrapped version of {@code f} that does not throw checked exceptions
     */
    static  IntToShort unchecked(
            net.mintern.functions.unary.checked.IntToShortE f) {
        return unchecked(RuntimeException::new, f);
    }

    /**
     * Returns a wrapped version of {@code f} that wraps any {@code IOException} with an
     * {@link java.io.UncheckedIOException}.
     *
     * @param  the {@code Exception} type that the operation may throw
     * @param f the operation to wrap
     * @return a wrapped version of {@code f} that throws {@code UncheckedIOException} instead of
     *      {@code IOException}
     */
    static  IntToShort uncheckedIO(
            net.mintern.functions.unary.checked.IntToShortE f) {
        return unchecked(java.io.UncheckedIOException::new, f);
    }

    /**
     * Binds {@code (i)} to {@code f}, returning a new function
     * of type {@code () -> short}.
     *
     * @param f the unbound function
     * @param i the argument
     * @return a new function {@code () -> short} that calls
     *      {@code f.call(i)} and returns the result.
     */
    static  net.mintern.functions.nullary.NilToShort
    bind(IntToShort f, int i) {
        return () -> f.call(i);
    }

    /**
     * Binds {@code (i)} to {@code this}, returning a new function
     * of type {@code () -> short}.
     *
     * @param i the argument
     * @return a new function {@code () -> short} that calls
     *      {@code this.call(i)} and returns the result.
     */
    @Override
    default net.mintern.functions.nullary.NilToShort bind(int i) {
        return IntToShort.bind(this, i);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy