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

ternary.checked.ObjDblLongToBoolE Maven / Gradle / Ivy

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

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

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

    /**
     * Binds {@code (t)} to the beginning of {@code f}, returning a new function
     * of type {@code (double, long) -> 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 (double d, long l) -> boolean} that calls
     *      {@code f.call(t, d, l)} and returns the result.
     */
    static  net.mintern.functions.binary.checked.DblLongToBoolE
    bind(ObjDblLongToBoolE f, T t) {
        return (d, l) -> f.call(t, d, l);
    }

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

    /**
     * Binds {@code (d, l)} 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 d argument 2
     * @param l argument 3
     * @return a new function {@code (T t) -> boolean} that calls
     *      {@code f.call(t, d, l)} and returns the result.
     */
    static  net.mintern.functions.unary.checked.ObjToBoolE
    rbind(ObjDblLongToBoolE f, double d, long l) {
        return (t) -> f.call(t, d, l);
    }

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

    /**
     * Binds {@code (t, d)} to the beginning of {@code f}, returning a new function
     * of type {@code (long) -> 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 d argument 2
     * @return a new function {@code (long l) -> boolean} that calls
     *      {@code f.call(t, d, l)} and returns the result.
     */
    static  net.mintern.functions.unary.checked.LongToBoolE
    bind(ObjDblLongToBoolE f, T t, double d) {
        return (l) -> f.call(t, d, l);
    }

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

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

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

    /**
     * Binds {@code (t, d, l)} 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 d argument 2
     * @param l argument 3
     * @return a new function {@code () -> boolean} that calls
     *      {@code f.call(t, d, l)} and returns the result.
     */
    static  net.mintern.functions.nullary.checked.NilToBoolE
    bind(ObjDblLongToBoolE f, T t, double d, long l) {
        return () -> f.call(t, d, l);
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy