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

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

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

    /**
     * Binds {@code (bool)} to the beginning of {@code f}, returning a new function
     * of type {@code (U) -> long}.
     *
     * @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) -> long} that calls
     *      {@code f.call(bool, u)} and returns the result.
     */
    static  net.mintern.functions.unary.checked.ObjToLongE
    bind(BoolObjToLongE 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) -> long}.
     *
     * @param bool argument 1
     * @return a new function {@code (U u) -> long} that calls
     *      {@code this.call(bool, u)} and returns the result.
     */
    default net.mintern.functions.unary.checked.ObjToLongE bind(boolean bool) {
        return BoolObjToLongE.bind(this, bool);
    }

    /**
     * Binds {@code (u)} to the end of {@code f}, returning a new function
     * of type {@code (boolean) -> long}.
     *
     * @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) -> long} that calls
     *      {@code f.call(bool, u)} and returns the result.
     */
    static  net.mintern.functions.unary.checked.BoolToLongE
    rbind(BoolObjToLongE 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) -> long}.
     *
     * @param u argument 2
     * @return a new function {@code (boolean bool) -> long} that calls
     *      {@code this.call(bool, u)} and returns the result.
     */
    default net.mintern.functions.unary.checked.BoolToLongE rbind(U u) {
        return BoolObjToLongE.rbind(this, u);
    }

    /**
     * Binds {@code (bool, u)} to {@code f}, returning a new function
     * of type {@code () -> long}.
     *
     * @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 () -> long} that calls
     *      {@code f.call(bool, u)} and returns the result.
     */
    static  net.mintern.functions.nullary.checked.NilToLongE
    bind(BoolObjToLongE f, boolean bool, U u) {
        return () -> f.call(bool, u);
    }

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