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

binary.checked.CharIntToLongE 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, int) -> long}.
 *
 * @param  the {@code Exception} type that the operation may throw
 */
@FunctionalInterface
public interface CharIntToLongE {

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

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

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

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

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy