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

binary.checked.CharObjToIntE Maven / Gradle / Ivy

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

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

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

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

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

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

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

    /**
     * Binds {@code (ch, u)} 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 ch argument 1
     * @param u argument 2
     * @return a new function {@code () -> int} that calls
     *      {@code f.call(ch, u)} and returns the result.
     */
    static  net.mintern.functions.nullary.checked.NilToIntE
    bind(CharObjToIntE f, char ch, U u) {
        return () -> f.call(ch, u);
    }

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