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

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

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

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

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

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

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

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

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

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

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

    /**
     * Binds {@code (d)} to the end of {@code f}, returning a new function
     * of type {@code (T, U) -> boolean}.
     *
     * @param  the type of argument 1
     * @param  the type of argument 2
     * @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, U u) -> boolean} that calls
     *      {@code f.call(t, u, d)} and returns the result.
     */
    static  net.mintern.functions.binary.checked.ObjObjToBoolE
    rbind(ObjObjDblToBoolE f, double d) {
        return (t, u) -> f.call(t, u, d);
    }

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

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

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