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

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

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

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

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

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

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

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

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

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

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

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy