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

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

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

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

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

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

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

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

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

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

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

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

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

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

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