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

ternary.checked.DblIntLongToBoolE 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, int, long) -> boolean}.
 *
 * @param  the {@code Exception} type that the operation may throw
 */
@FunctionalInterface
public interface DblIntLongToBoolE {

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

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

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

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

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

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

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

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

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy