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

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

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

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

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

    /**
     * Binds {@code (l1)} to the beginning of {@code f}, returning a new function
     * of type {@code (long, int) -> R}.
     *
     * @param  the type of the return value
     * @param  the {@code Exception} type that the operation may throw
     * @param f the unbound function
     * @param l1 argument 1
     * @return a new function {@code (long l2, int i) -> R} that calls
     *      {@code f.call(l1, l2, i)} and returns the result.
     */
    static  net.mintern.functions.binary.checked.LongIntToObjE
    bind(LongLongIntToObjE f, long l1) {
        return (l2, i) -> f.call(l1, l2, i);
    }

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

    /**
     * Binds {@code (l2, i)} to the end of {@code f}, returning a new function
     * of type {@code (long) -> R}.
     *
     * @param  the type of the return value
     * @param  the {@code Exception} type that the operation may throw
     * @param f the unbound function
     * @param l2 argument 2
     * @param i argument 3
     * @return a new function {@code (long l1) -> R} that calls
     *      {@code f.call(l1, l2, i)} and returns the result.
     */
    static  net.mintern.functions.unary.checked.LongToObjE
    rbind(LongLongIntToObjE f, long l2, int i) {
        return (l1) -> f.call(l1, l2, i);
    }

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

    /**
     * Binds {@code (l1, l2)} to the beginning of {@code f}, returning a new function
     * of type {@code (int) -> R}.
     *
     * @param  the type of the return value
     * @param  the {@code Exception} type that the operation may throw
     * @param f the unbound function
     * @param l1 argument 1
     * @param l2 argument 2
     * @return a new function {@code (int i) -> R} that calls
     *      {@code f.call(l1, l2, i)} and returns the result.
     */
    static  net.mintern.functions.unary.checked.IntToObjE
    bind(LongLongIntToObjE f, long l1, long l2) {
        return (i) -> f.call(l1, l2, i);
    }

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

    /**
     * Binds {@code (i)} to the end of {@code f}, returning a new function
     * of type {@code (long, long) -> R}.
     *
     * @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 l1, long l2) -> R} that calls
     *      {@code f.call(l1, l2, i)} and returns the result.
     */
    static  net.mintern.functions.binary.checked.LongLongToObjE
    rbind(LongLongIntToObjE f, int i) {
        return (l1, l2) -> f.call(l1, l2, i);
    }

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

    /**
     * Binds {@code (l1, l2, i)} to {@code f}, returning a new function
     * of type {@code () -> R}.
     *
     * @param  the type of the return value
     * @param  the {@code Exception} type that the operation may throw
     * @param f the unbound function
     * @param l1 argument 1
     * @param l2 argument 2
     * @param i argument 3
     * @return a new function {@code () -> R} that calls
     *      {@code f.call(l1, l2, 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(LongLongIntToObjE f, long l1, long l2, int i) {
        return () -> f.call(l1, l2, i);
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy