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

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

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

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

    /**
     * Performs this operation.
     *
     * @param l argument 1
     * @param u argument 2
     * @param d argument 3
     * @return the result of the operation
     * @throws E if the operation cannot be completed
     */
    double 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) -> double}.
     *
     * @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) -> double} that calls
     *      {@code f.call(l, u, d)} and returns the result.
     */
    static  net.mintern.functions.binary.checked.ObjDblToDblE
    bind(LongObjDblToDblE 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) -> double}.
     *
     * @param l argument 1
     * @return a new function {@code (U u, double d) -> double} that calls
     *      {@code this.call(l, u, d)} and returns the result.
     */
    default net.mintern.functions.binary.checked.ObjDblToDblE bind(long l) {
        return LongObjDblToDblE.bind(this, l);
    }

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

    /**
     * Binds {@code (l, u)} to the beginning 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 l argument 1
     * @param u argument 2
     * @return a new function {@code (double d) -> double} that calls
     *      {@code f.call(l, u, d)} and returns the result.
     */
    static  net.mintern.functions.unary.checked.DblToDblE
    bind(LongObjDblToDblE 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) -> double}.
     *
     * @param l argument 1
     * @param u argument 2
     * @return a new function {@code (double d) -> double} that calls
     *      {@code this.call(l, u, d)} and returns the result.
     */
    default net.mintern.functions.unary.checked.DblToDblE bind(long l, U u) {
        return LongObjDblToDblE.bind(this, l, u);
    }

    /**
     * Binds {@code (d)} to the end of {@code f}, returning a new function
     * of type {@code (long, U) -> 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 3
     * @return a new function {@code (long l, U u) -> double} that calls
     *      {@code f.call(l, u, d)} and returns the result.
     */
    static  net.mintern.functions.binary.checked.LongObjToDblE
    rbind(LongObjDblToDblE 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) -> double}.
     *
     * @param d argument 3
     * @return a new function {@code (long l, U u) -> double} that calls
     *      {@code this.call(l, u, d)} and returns the result.
     */
    default net.mintern.functions.binary.checked.LongObjToDblE rbind(double d) {
        return LongObjDblToDblE.rbind(this, d);
    }

    /**
     * Binds {@code (l, u, d)} 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 l argument 1
     * @param u argument 2
     * @param d argument 3
     * @return a new function {@code () -> double} that calls
     *      {@code f.call(l, u, d)} and returns the result.
     */
    static  net.mintern.functions.nullary.checked.NilToDblE
    bind(LongObjDblToDblE 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 () -> double}.
     *
     * @param l argument 1
     * @param u argument 2
     * @param d argument 3
     * @return a new function {@code () -> double} that calls
     *      {@code this.call(l, u, d)} and returns the result.
     */
    default net.mintern.functions.nullary.checked.NilToDblE bind(long l, U u, double d) {
        return LongObjDblToDblE.bind(this, l, u, d);
    }
}