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

binary.checked.ObjBoolToCharE Maven / Gradle / Ivy

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

/**
 * An operation of type {@code (T, boolean) -> char}.
 *
 * @param  the type of argument 1
 * @param  the {@code Exception} type that the operation may throw
 */
@FunctionalInterface
public interface ObjBoolToCharE {

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

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

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

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

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy