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

binary.checked.BoolFloatToNilE Maven / Gradle / Ivy

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

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

    /**
     * Performs this operation.
     *
     * @param bool argument 1
     * @param fl argument 2
     * @throws E if the operation cannot be completed
     */
    void call(boolean bool, float fl) throws E;

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

    /**
     * Binds {@code (bool)} to the beginning of {@code this}, returning a new function
     * of type {@code (float) -> void}.
     *
     * @param bool argument 1
     * @return a new function {@code (float fl) -> void} that calls
     *      {@code this.call(bool, fl)}.
     */
    default net.mintern.functions.unary.checked.FloatToNilE bind(boolean bool) {
        return BoolFloatToNilE.bind(this, bool);
    }

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

    /**
     * Binds {@code (fl)} to the end of {@code this}, returning a new function
     * of type {@code (boolean) -> void}.
     *
     * @param fl argument 2
     * @return a new function {@code (boolean bool) -> void} that calls
     *      {@code this.call(bool, fl)}.
     */
    default net.mintern.functions.unary.checked.BoolToNilE rbind(float fl) {
        return BoolFloatToNilE.rbind(this, fl);
    }

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

    /**
     * Binds {@code (bool, fl)} to {@code this}, returning a new function
     * of type {@code () -> void}.
     *
     * @param bool argument 1
     * @param fl argument 2
     * @return a new function {@code () -> void} that calls
     *      {@code this.call(bool, fl)}.
     */
    default net.mintern.functions.nullary.checked.NilToNilE bind(boolean bool, float fl) {
        return BoolFloatToNilE.bind(this, bool, fl);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy