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

ternary.checked.ObjObjDblToIntE 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, U, double) -> int}.
 *
 * @param  the type of argument 1
 * @param  the type of argument 2
 * @param  the {@code Exception} type that the operation may throw
 */
@FunctionalInterface
public interface ObjObjDblToIntE {

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

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

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

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

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

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

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

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

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

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

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