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

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

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

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

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

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

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

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

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

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

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

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

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

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

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