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

binary.checked.BoolByteToObjE Maven / Gradle / Ivy

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

/**
 * An operation of type {@code (boolean, byte) -> R}.
 *
 * @param  the type of the return value
 * @param  the {@code Exception} type that the operation may throw
 */
@FunctionalInterface
public interface BoolByteToObjE {

    /**
     * Performs this operation.
     *
     * @param bool argument 1
     * @param b argument 2
     * @return the result of the operation
     * @throws E if the operation cannot be completed
     */
    R call(boolean bool, byte b) throws E;

    /**
     * Binds {@code (bool)} to the beginning of {@code f}, returning a new function
     * of type {@code (byte) -> R}.
     *
     * @param  the type of the return value
     * @param  the {@code Exception} type that the operation may throw
     * @param f the unbound function
     * @param bool argument 1
     * @return a new function {@code (byte b) -> R} that calls
     *      {@code f.call(bool, b)} and returns the result.
     */
    static  net.mintern.functions.unary.checked.ByteToObjE
    bind(BoolByteToObjE f, boolean bool) {
        return (b) -> f.call(bool, b);
    }

    /**
     * Binds {@code (bool)} to the beginning of {@code this}, returning a new function
     * of type {@code (byte) -> R}.
     *
     * @param bool argument 1
     * @return a new function {@code (byte b) -> R} that calls
     *      {@code this.call(bool, b)} and returns the result.
     */
    default net.mintern.functions.unary.checked.ByteToObjE bind(boolean bool) {
        return BoolByteToObjE.bind(this, bool);
    }

    /**
     * Binds {@code (b)} to the end of {@code f}, returning a new function
     * of type {@code (boolean) -> R}.
     *
     * @param  the type of the return value
     * @param  the {@code Exception} type that the operation may throw
     * @param f the unbound function
     * @param b argument 2
     * @return a new function {@code (boolean bool) -> R} that calls
     *      {@code f.call(bool, b)} and returns the result.
     */
    static  net.mintern.functions.unary.checked.BoolToObjE
    rbind(BoolByteToObjE f, byte b) {
        return (bool) -> f.call(bool, b);
    }

    /**
     * Binds {@code (b)} to the end of {@code this}, returning a new function
     * of type {@code (boolean) -> R}.
     *
     * @param b argument 2
     * @return a new function {@code (boolean bool) -> R} that calls
     *      {@code this.call(bool, b)} and returns the result.
     */
    default net.mintern.functions.unary.checked.BoolToObjE rbind(byte b) {
        return BoolByteToObjE.rbind(this, b);
    }

    /**
     * Binds {@code (bool, b)} to {@code f}, returning a new function
     * of type {@code () -> R}.
     *
     * @param  the type of the return value
     * @param  the {@code Exception} type that the operation may throw
     * @param f the unbound function
     * @param bool argument 1
     * @param b argument 2
     * @return a new function {@code () -> R} that calls
     *      {@code f.call(bool, b)} and returns the result.
     */
    @SuppressWarnings("unchecked") // maven spuriously warns about a type error in this case
    static  net.mintern.functions.nullary.checked.NilToObjE
    bind(BoolByteToObjE f, boolean bool, byte b) {
        return () -> f.call(bool, b);
    }

    /**
     * Binds {@code (bool, b)} to {@code this}, returning a new function
     * of type {@code () -> R}.
     *
     * @param bool argument 1
     * @param b argument 2
     * @return a new function {@code () -> R} that calls
     *      {@code this.call(bool, b)} and returns the result.
     */
    default net.mintern.functions.nullary.checked.NilToObjE bind(boolean bool, byte b) {
        return BoolByteToObjE.bind(this, bool, b);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy