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

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

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

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

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

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

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy