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

net.mintern.functions.binary.checked.CharByteToBoolE Maven / Gradle / Ivy

The newest version!
package net.mintern.functions.binary.checked;

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

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

    /**
     * Binds {@code (ch)} 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 ch argument 1
     * @return a new function {@code (byte b) -> boolean} that calls
     *      {@code f.call(ch, b)} and returns the result.
     */
    static  net.mintern.functions.unary.checked.ByteToBoolE
    bind(CharByteToBoolE f, char ch) {
        return (b) -> f.call(ch, b);
    }

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

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

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

    /**
     * Binds {@code (ch, b)} 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 ch argument 1
     * @param b argument 2
     * @return a new function {@code () -> boolean} that calls
     *      {@code f.call(ch, b)} and returns the result.
     */
    static  net.mintern.functions.nullary.checked.NilToBoolE
    bind(CharByteToBoolE f, char ch, byte b) {
        return () -> f.call(ch, b);
    }

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy