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

net.mintern.functions.ternary.checked.DblDblLongToNilE 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, double, long) -> void}.
 *
 * @param  the {@code Exception} type that the operation may throw
 */
@FunctionalInterface
public interface DblDblLongToNilE {

    /**
     * Performs this operation.
     *
     * @param d1 argument 1
     * @param d2 argument 2
     * @param l argument 3
     * @throws E if the operation cannot be completed
     */
    void call(double d1, double d2, long l) throws E;

    /**
     * Binds {@code (d1)} to the beginning of {@code f}, returning a new function
     * of type {@code (double, long) -> void}.
     *
     * @param  the {@code Exception} type that the operation may throw
     * @param f the unbound function
     * @param d1 argument 1
     * @return a new function {@code (double d2, long l) -> void} that calls
     *      {@code f.call(d1, d2, l)}.
     */
    static  net.mintern.functions.binary.checked.DblLongToNilE
    bind(DblDblLongToNilE f, double d1) {
        return (d2, l) -> f.call(d1, d2, l);
    }

    /**
     * Binds {@code (d1)} to the beginning of {@code this}, returning a new function
     * of type {@code (double, long) -> void}.
     *
     * @param d1 argument 1
     * @return a new function {@code (double d2, long l) -> void} that calls
     *      {@code this.call(d1, d2, l)}.
     */
    default net.mintern.functions.binary.checked.DblLongToNilE bind(double d1) {
        return DblDblLongToNilE.bind(this, d1);
    }

    /**
     * Binds {@code (d2, l)} to the end of {@code f}, returning a new function
     * of type {@code (double) -> void}.
     *
     * @param  the {@code Exception} type that the operation may throw
     * @param f the unbound function
     * @param d2 argument 2
     * @param l argument 3
     * @return a new function {@code (double d1) -> void} that calls
     *      {@code f.call(d1, d2, l)}.
     */
    static  net.mintern.functions.unary.checked.DblToNilE
    rbind(DblDblLongToNilE f, double d2, long l) {
        return (d1) -> f.call(d1, d2, l);
    }

    /**
     * Binds {@code (d2, l)} to the end of {@code this}, returning a new function
     * of type {@code (double) -> void}.
     *
     * @param d2 argument 2
     * @param l argument 3
     * @return a new function {@code (double d1) -> void} that calls
     *      {@code this.call(d1, d2, l)}.
     */
    default net.mintern.functions.unary.checked.DblToNilE rbind(double d2, long l) {
        return DblDblLongToNilE.rbind(this, d2, l);
    }

    /**
     * Binds {@code (d1, d2)} to the beginning of {@code f}, returning a new function
     * of type {@code (long) -> void}.
     *
     * @param  the {@code Exception} type that the operation may throw
     * @param f the unbound function
     * @param d1 argument 1
     * @param d2 argument 2
     * @return a new function {@code (long l) -> void} that calls
     *      {@code f.call(d1, d2, l)}.
     */
    static  net.mintern.functions.unary.checked.LongToNilE
    bind(DblDblLongToNilE f, double d1, double d2) {
        return (l) -> f.call(d1, d2, l);
    }

    /**
     * Binds {@code (d1, d2)} to the beginning of {@code this}, returning a new function
     * of type {@code (long) -> void}.
     *
     * @param d1 argument 1
     * @param d2 argument 2
     * @return a new function {@code (long l) -> void} that calls
     *      {@code this.call(d1, d2, l)}.
     */
    default net.mintern.functions.unary.checked.LongToNilE bind(double d1, double d2) {
        return DblDblLongToNilE.bind(this, d1, d2);
    }

    /**
     * Binds {@code (l)} to the end of {@code f}, returning a new function
     * of type {@code (double, double) -> void}.
     *
     * @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 d1, double d2) -> void} that calls
     *      {@code f.call(d1, d2, l)}.
     */
    static  net.mintern.functions.binary.checked.DblDblToNilE
    rbind(DblDblLongToNilE f, long l) {
        return (d1, d2) -> f.call(d1, d2, l);
    }

    /**
     * Binds {@code (l)} to the end of {@code this}, returning a new function
     * of type {@code (double, double) -> void}.
     *
     * @param l argument 3
     * @return a new function {@code (double d1, double d2) -> void} that calls
     *      {@code this.call(d1, d2, l)}.
     */
    default net.mintern.functions.binary.checked.DblDblToNilE rbind(long l) {
        return DblDblLongToNilE.rbind(this, l);
    }

    /**
     * Binds {@code (d1, d2, l)} to {@code f}, returning a new function
     * of type {@code () -> void}.
     *
     * @param  the {@code Exception} type that the operation may throw
     * @param f the unbound function
     * @param d1 argument 1
     * @param d2 argument 2
     * @param l argument 3
     * @return a new function {@code () -> void} that calls
     *      {@code f.call(d1, d2, l)}.
     */
    static  net.mintern.functions.nullary.checked.NilToNilE
    bind(DblDblLongToNilE f, double d1, double d2, long l) {
        return () -> f.call(d1, d2, l);
    }

    /**
     * Binds {@code (d1, d2, l)} to {@code this}, returning a new function
     * of type {@code () -> void}.
     *
     * @param d1 argument 1
     * @param d2 argument 2
     * @param l argument 3
     * @return a new function {@code () -> void} that calls
     *      {@code this.call(d1, d2, l)}.
     */
    default net.mintern.functions.nullary.checked.NilToNilE bind(double d1, double d2, long l) {
        return DblDblLongToNilE.bind(this, d1, d2, l);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy