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

binary.checked.IntBoolToFloatE Maven / Gradle / Ivy

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

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

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

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

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

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

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy