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

ternary.checked.IntObjDblToNilE Maven / Gradle / Ivy

There is a newer version: 2.0
Show newest version
package net.mintern.functions.ternary.checked;

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

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

    /**
     * Binds {@code (i)} 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 i argument 1
     * @return a new function {@code (U u, double d) -> void} that calls
     *      {@code f.call(i, u, d)}.
     */
    static  net.mintern.functions.binary.checked.ObjDblToNilE
    bind(IntObjDblToNilE f, int i) {
        return (u, d) -> f.call(i, u, d);
    }

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

    /**
     * Binds {@code (u, d)} to the end of {@code f}, returning a new function
     * of type {@code (int) -> 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 (int i) -> void} that calls
     *      {@code f.call(i, u, d)}.
     */
    static  net.mintern.functions.unary.checked.IntToNilE
    rbind(IntObjDblToNilE f, U u, double d) {
        return (i) -> f.call(i, u, d);
    }

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

    /**
     * Binds {@code (i, 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 i argument 1
     * @param u argument 2
     * @return a new function {@code (double d) -> void} that calls
     *      {@code f.call(i, u, d)}.
     */
    static  net.mintern.functions.unary.checked.DblToNilE
    bind(IntObjDblToNilE f, int i, U u) {
        return (d) -> f.call(i, u, d);
    }

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

    /**
     * Binds {@code (d)} to the end of {@code f}, returning a new function
     * of type {@code (int, 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 (int i, U u) -> void} that calls
     *      {@code f.call(i, u, d)}.
     */
    static  net.mintern.functions.binary.checked.IntObjToNilE
    rbind(IntObjDblToNilE f, double d) {
        return (i, u) -> f.call(i, u, d);
    }

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

    /**
     * Binds {@code (i, 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 i argument 1
     * @param u argument 2
     * @param d argument 3
     * @return a new function {@code () -> void} that calls
     *      {@code f.call(i, u, d)}.
     */
    static  net.mintern.functions.nullary.checked.NilToNilE
    bind(IntObjDblToNilE f, int i, U u, double d) {
        return () -> f.call(i, u, d);
    }

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