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

net.mintern.functions.ternary.checked.ObjIntDblToBoolE Maven / Gradle / Ivy

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

/**
 * An operation of type {@code (T, int, double) -> boolean}.
 *
 * @param  the type of argument 1
 * @param  the {@code Exception} type that the operation may throw
 */
@FunctionalInterface
public interface ObjIntDblToBoolE {

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

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

    /**
     * Binds {@code (t)} to the beginning of {@code this}, returning a new function
     * of type {@code (int, double) -> boolean}.
     *
     * @param t argument 1
     * @return a new function {@code (int i, double d) -> boolean} that calls
     *      {@code this.call(t, i, d)} and returns the result.
     */
    default net.mintern.functions.binary.checked.IntDblToBoolE bind(T t) {
        return ObjIntDblToBoolE.bind(this, t);
    }

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

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

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

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

    /**
     * Binds {@code (d)} to the end of {@code f}, returning a new function
     * of type {@code (T, int) -> boolean}.
     *
     * @param  the type of argument 1
     * @param  the {@code Exception} type that the operation may throw
     * @param f the unbound function
     * @param d argument 3
     * @return a new function {@code (T t, int i) -> boolean} that calls
     *      {@code f.call(t, i, d)} and returns the result.
     */
    static  net.mintern.functions.binary.checked.ObjIntToBoolE
    rbind(ObjIntDblToBoolE f, double d) {
        return (t, i) -> f.call(t, i, d);
    }

    /**
     * Binds {@code (d)} to the end of {@code this}, returning a new function
     * of type {@code (T, int) -> boolean}.
     *
     * @param d argument 3
     * @return a new function {@code (T t, int i) -> boolean} that calls
     *      {@code this.call(t, i, d)} and returns the result.
     */
    default net.mintern.functions.binary.checked.ObjIntToBoolE rbind(double d) {
        return ObjIntDblToBoolE.rbind(this, d);
    }

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy