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

ternary.checked.LongObjDblToObjE Maven / Gradle / Ivy

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

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

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

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

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

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

    /**
     * Binds {@code (l, u, d)} to {@code f}, returning a new function
     * of type {@code () -> R}.
     *
     * @param  the type of argument 2
     * @param  the type of the return value
     * @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 () -> R} that calls
     *      {@code f.call(l, u, d)} and returns the result.
     */
    @SuppressWarnings("unchecked") // maven spuriously warns about a type error in this case
    static  net.mintern.functions.nullary.checked.NilToObjE
    bind(LongObjDblToObjE 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 () -> R}.
     *
     * @param l argument 1
     * @param u argument 2
     * @param d argument 3
     * @return a new function {@code () -> R} that calls
     *      {@code this.call(l, u, d)} and returns the result.
     */
    default net.mintern.functions.nullary.checked.NilToObjE bind(long l, U u, double d) {
        return LongObjDblToObjE.bind(this, l, u, d);
    }
}