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

ternary.checked.DblLongLongToBoolE Maven / Gradle / Ivy

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

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

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

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

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

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

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

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

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

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

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy