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

binary.checked.ByteByteToBoolE Maven / Gradle / Ivy

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

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

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

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

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

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

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

    /**
     * Binds {@code (b1, b2)} to {@code f}, returning a new function
     * of type {@code () -> boolean}.
     *
     * @param  the {@code Exception} type that the operation may throw
     * @param f the unbound function
     * @param b1 argument 1
     * @param b2 argument 2
     * @return a new function {@code () -> boolean} that calls
     *      {@code f.call(b1, b2)} and returns the result.
     */
    static  net.mintern.functions.nullary.checked.NilToBoolE
    bind(ByteByteToBoolE f, byte b1, byte b2) {
        return () -> f.call(b1, b2);
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy