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

ternary.checked.ObjDblObjToNilE 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, V) -> void}.
 *
 * @param  the type of argument 1
 * @param  the type of argument 3
 * @param  the {@code Exception} type that the operation may throw
 */
@FunctionalInterface
public interface ObjDblObjToNilE {

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

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

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

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

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

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

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

    /**
     * Binds {@code (v)} to the end of {@code f}, returning a new function
     * of type {@code (T, double) -> void}.
     *
     * @param  the type of argument 1
     * @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 (T t, double d) -> void} that calls
     *      {@code f.call(t, d, v)}.
     */
    static  net.mintern.functions.binary.checked.ObjDblToNilE
    rbind(ObjDblObjToNilE f, V v) {
        return (t, d) -> f.call(t, d, v);
    }

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy