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

binary.checked.IntFloatToBoolE Maven / Gradle / Ivy

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

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

    /**
     * Performs this operation.
     *
     * @param i argument 1
     * @param fl argument 2
     * @return the result of the operation
     * @throws E if the operation cannot be completed
     */
    boolean call(int i, float fl) throws E;

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

    /**
     * Binds {@code (i)} to the beginning of {@code this}, returning a new function
     * of type {@code (float) -> boolean}.
     *
     * @param i argument 1
     * @return a new function {@code (float fl) -> boolean} that calls
     *      {@code this.call(i, fl)} and returns the result.
     */
    default net.mintern.functions.unary.checked.FloatToBoolE bind(int i) {
        return IntFloatToBoolE.bind(this, i);
    }

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

    /**
     * Binds {@code (fl)} to the end of {@code this}, returning a new function
     * of type {@code (int) -> boolean}.
     *
     * @param fl argument 2
     * @return a new function {@code (int i) -> boolean} that calls
     *      {@code this.call(i, fl)} and returns the result.
     */
    default net.mintern.functions.unary.checked.IntToBoolE rbind(float fl) {
        return IntFloatToBoolE.rbind(this, fl);
    }

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy