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

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

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

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

    /**
     * Performs this operation.
     *
     * @param i 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(int i, U u, double d) throws E;

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

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

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

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

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

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

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

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

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

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