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

binary.checked.DblCharToIntE Maven / Gradle / Ivy

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

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

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

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

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

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

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy