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

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

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

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

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

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

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

    /**
     * Binds {@code (l, d)} 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 l argument 2
     * @param d argument 3
     * @return a new function {@code (T t) -> void} that calls
     *      {@code f.call(t, l, d)}.
     */
    static  net.mintern.functions.unary.checked.ObjToNilE
    rbind(ObjLongDblToNilE f, long l, double d) {
        return (t) -> f.call(t, l, d);
    }

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

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

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

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

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

    /**
     * Binds {@code (t, l, d)} 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 l argument 2
     * @param d argument 3
     * @return a new function {@code () -> void} that calls
     *      {@code f.call(t, l, d)}.
     */
    static  net.mintern.functions.nullary.checked.NilToNilE
    bind(ObjLongDblToNilE f, T t, long l, double d) {
        return () -> f.call(t, l, d);
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy