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

binary.checked.BoolObjToNilE 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, U) -> void}.
 *
 * @param  the type of argument 2
 * @param  the {@code Exception} type that the operation may throw
 */
@FunctionalInterface
public interface BoolObjToNilE {

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

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

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

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

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

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

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