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

binary.checked.FloatCharToDblE Maven / Gradle / Ivy

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

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

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

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

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

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

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy