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

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

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

    /**
     * Binds {@code (fl)} to the beginning of {@code f}, returning a new function
     * of type {@code (double) -> 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 (double d) -> double} that calls
     *      {@code f.call(fl, d)} and returns the result.
     */
    static  net.mintern.functions.unary.checked.DblToDblE
    bind(FloatDblToDblE f, float fl) {
        return (d) -> f.call(fl, d);
    }

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

    /**
     * Binds {@code (d)} 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 d argument 2
     * @return a new function {@code (float fl) -> double} that calls
     *      {@code f.call(fl, d)} and returns the result.
     */
    static  net.mintern.functions.unary.checked.FloatToDblE
    rbind(FloatDblToDblE f, double d) {
        return (fl) -> f.call(fl, d);
    }

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy