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

ternary.checked.ObjLongIntToIntE Maven / Gradle / Ivy

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

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

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

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

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

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

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

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

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

    /**
     * Binds {@code (i)} to the end of {@code f}, returning a new function
     * of type {@code (T, long) -> int}.
     *
     * @param  the type of argument 1
     * @param  the {@code Exception} type that the operation may throw
     * @param f the unbound function
     * @param i argument 3
     * @return a new function {@code (T t, long l) -> int} that calls
     *      {@code f.call(t, l, i)} and returns the result.
     */
    static  net.mintern.functions.binary.checked.ObjLongToIntE
    rbind(ObjLongIntToIntE f, int i) {
        return (t, l) -> f.call(t, l, i);
    }

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

    /**
     * Binds {@code (t, l, i)} to {@code f}, returning a new function
     * of type {@code () -> int}.
     *
     * @param  the type of argument 1
     * @param  the {@code Exception} type that the operation may throw
     * @param f the unbound function
     * @param t argument 1
     * @param l argument 2
     * @param i argument 3
     * @return a new function {@code () -> int} that calls
     *      {@code f.call(t, l, i)} and returns the result.
     */
    static  net.mintern.functions.nullary.checked.NilToIntE
    bind(ObjLongIntToIntE f, T t, long l, int i) {
        return () -> f.call(t, l, i);
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy