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

binary.checked.IntDblToCharE Maven / Gradle / Ivy

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

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

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

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

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

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

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy