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

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

The newest version!
package net.mintern.functions.unary;

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

    /**
     * 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.ByteToIntE#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  ByteToInt unchecked(
            java.util.function.Function toRuntime,
            net.mintern.functions.unary.checked.ByteToIntE f) {
        return (b) -> {
            try {
                return f.call(b);
            } 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  ByteToInt unchecked(
            net.mintern.functions.unary.checked.ByteToIntE 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  ByteToInt uncheckedIO(
            net.mintern.functions.unary.checked.ByteToIntE f) {
        return unchecked(java.io.UncheckedIOException::new, f);
    }

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy