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

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

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

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

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

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

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

    /**
     * Binds {@code (d, l)} 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 d argument 2
     * @param l argument 3
     * @return a new function {@code (T t) -> int} that calls
     *      {@code f.call(t, d, l)} and returns the result.
     */
    static  net.mintern.functions.unary.checked.ObjToIntE
    rbind(ObjDblLongToIntE f, double d, long l) {
        return (t) -> f.call(t, d, l);
    }

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

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

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

    /**
     * Binds {@code (l)} to the end of {@code f}, returning a new function
     * of type {@code (T, double) -> 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 3
     * @return a new function {@code (T t, double d) -> int} that calls
     *      {@code f.call(t, d, l)} and returns the result.
     */
    static  net.mintern.functions.binary.checked.ObjDblToIntE
    rbind(ObjDblLongToIntE f, long l) {
        return (t, d) -> f.call(t, d, l);
    }

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

    /**
     * Binds {@code (t, d, l)} 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 d argument 2
     * @param l argument 3
     * @return a new function {@code () -> int} that calls
     *      {@code f.call(t, d, l)} and returns the result.
     */
    static  net.mintern.functions.nullary.checked.NilToIntE
    bind(ObjDblLongToIntE f, T t, double d, long l) {
        return () -> f.call(t, d, l);
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy