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

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

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

/**
 * An operation of type {@code (double, double, V) -> void}.
 *
 * @param  the type of argument 3
 * @param  the {@code Exception} type that the operation may throw
 */
@FunctionalInterface
public interface DblDblObjToNilE {

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

    /**
     * Binds {@code (d1)} to the beginning of {@code f}, returning a new function
     * of type {@code (double, V) -> void}.
     *
     * @param  the type of argument 3
     * @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, V v) -> void} that calls
     *      {@code f.call(d1, d2, v)}.
     */
    static  net.mintern.functions.binary.checked.DblObjToNilE
    bind(DblDblObjToNilE f, double d1) {
        return (d2, v) -> f.call(d1, d2, v);
    }

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

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

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

    /**
     * Binds {@code (d1, d2)} to the beginning of {@code f}, returning a new function
     * of type {@code (V) -> void}.
     *
     * @param  the type of argument 3
     * @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 (V v) -> void} that calls
     *      {@code f.call(d1, d2, v)}.
     */
    static  net.mintern.functions.unary.checked.ObjToNilE
    bind(DblDblObjToNilE f, double d1, double d2) {
        return (v) -> f.call(d1, d2, v);
    }

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

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

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy