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

binary.checked.IntBoolToObjE 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) -> R}.
 *
 * @param  the type of the return value
 * @param  the {@code Exception} type that the operation may throw
 */
@FunctionalInterface
public interface IntBoolToObjE {

    /**
     * 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
     */
    R call(int i, boolean bool) throws E;

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

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

    /**
     * Binds {@code (i, bool)} to {@code f}, returning a new function
     * of type {@code () -> R}.
     *
     * @param  the type of the return value
     * @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 () -> R} that calls
     *      {@code f.call(i, bool)} and returns the result.
     */
    @SuppressWarnings("unchecked") // maven spuriously warns about a type error in this case
    static  net.mintern.functions.nullary.checked.NilToObjE
    bind(IntBoolToObjE f, int i, boolean bool) {
        return () -> f.call(i, bool);
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy