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

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

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

/**
 * An operation of type {@code (long, U, int) -> 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 LongObjIntToObjE {

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

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

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

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

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

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

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

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

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

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

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