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

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

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

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

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

    /**
     * Binds {@code (d)} to the beginning of {@code f}, returning a new function
     * of type {@code (U, long) -> int}.
     *
     * @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, long l) -> int} that calls
     *      {@code f.call(d, u, l)} and returns the result.
     */
    static  net.mintern.functions.binary.checked.ObjLongToIntE
    bind(DblObjLongToIntE f, double d) {
        return (u, l) -> f.call(d, u, l);
    }

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

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

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

    /**
     * Binds {@code (d, u)} to the beginning of {@code f}, returning a new function
     * of type {@code (long) -> int}.
     *
     * @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 (long l) -> int} that calls
     *      {@code f.call(d, u, l)} and returns the result.
     */
    static  net.mintern.functions.unary.checked.LongToIntE
    bind(DblObjLongToIntE f, double d, U u) {
        return (l) -> f.call(d, u, l);
    }

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

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

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

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

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