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

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

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

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

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

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

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

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

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

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

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

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

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy