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

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

    /**
     * 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
     */
    byte call(char ch, float fl) throws E;

    /**
     * Binds {@code (ch)} to the beginning of {@code f}, returning a new function
     * of type {@code (float) -> byte}.
     *
     * @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) -> byte} that calls
     *      {@code f.call(ch, fl)} and returns the result.
     */
    static  net.mintern.functions.unary.checked.FloatToByteE
    bind(CharFloatToByteE 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) -> byte}.
     *
     * @param ch argument 1
     * @return a new function {@code (float fl) -> byte} that calls
     *      {@code this.call(ch, fl)} and returns the result.
     */
    default net.mintern.functions.unary.checked.FloatToByteE bind(char ch) {
        return CharFloatToByteE.bind(this, ch);
    }

    /**
     * Binds {@code (fl)} to the end of {@code f}, returning a new function
     * of type {@code (char) -> byte}.
     *
     * @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) -> byte} that calls
     *      {@code f.call(ch, fl)} and returns the result.
     */
    static  net.mintern.functions.unary.checked.CharToByteE
    rbind(CharFloatToByteE 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) -> byte}.
     *
     * @param fl argument 2
     * @return a new function {@code (char ch) -> byte} that calls
     *      {@code this.call(ch, fl)} and returns the result.
     */
    default net.mintern.functions.unary.checked.CharToByteE rbind(float fl) {
        return CharFloatToByteE.rbind(this, fl);
    }

    /**
     * Binds {@code (ch, fl)} to {@code f}, returning a new function
     * of type {@code () -> byte}.
     *
     * @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 () -> byte} that calls
     *      {@code f.call(ch, fl)} and returns the result.
     */
    static  net.mintern.functions.nullary.checked.NilToByteE
    bind(CharFloatToByteE f, char ch, float fl) {
        return () -> f.call(ch, fl);
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy