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

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

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

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

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

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

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

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

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

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

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

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

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy