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

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

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

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

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

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

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

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

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

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

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

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

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

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

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