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

ternary.checked.LongObjObjToObjE 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, V) -> R}.
 *
 * @param  the type of argument 2
 * @param  the type of argument 3
 * @param  the type of the return value
 * @param  the {@code Exception} type that the operation may throw
 */
@FunctionalInterface
public interface LongObjObjToObjE {

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

    /**
     * Binds {@code (l)} to the beginning of {@code f}, returning a new function
     * of type {@code (U, V) -> R}.
     *
     * @param  the type of argument 2
     * @param  the type of argument 3
     * @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, V v) -> R} that calls
     *      {@code f.call(l, u, v)} and returns the result.
     */
    static  net.mintern.functions.binary.checked.ObjObjToObjE
    bind(LongObjObjToObjE f, long l) {
        return (u, v) -> f.call(l, u, v);
    }

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

    /**
     * Binds {@code (u, v)} 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 argument 3
     * @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 v argument 3
     * @return a new function {@code (long l) -> R} that calls
     *      {@code f.call(l, u, v)} and returns the result.
     */
    static  net.mintern.functions.unary.checked.LongToObjE
    rbind(LongObjObjToObjE f, U u, V v) {
        return (l) -> f.call(l, u, v);
    }

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

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

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

    /**
     * Binds {@code (v)} 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 argument 3
     * @param  the type of the return value
     * @param  the {@code Exception} type that the operation may throw
     * @param f the unbound function
     * @param v argument 3
     * @return a new function {@code (long l, U u) -> R} that calls
     *      {@code f.call(l, u, v)} and returns the result.
     */
    static  net.mintern.functions.binary.checked.LongObjToObjE
    rbind(LongObjObjToObjE f, V v) {
        return (l, u) -> f.call(l, u, v);
    }

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

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

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