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

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

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

    /**
     * Binds {@code (i)} to the beginning of {@code f}, returning a new function
     * of type {@code (U) -> byte}.
     *
     * @param  the type of argument 2
     * @param  the {@code Exception} type that the operation may throw
     * @param f the unbound function
     * @param i argument 1
     * @return a new function {@code (U u) -> byte} that calls
     *      {@code f.call(i, u)} and returns the result.
     */
    static  net.mintern.functions.unary.checked.ObjToByteE
    bind(IntObjToByteE f, int i) {
        return (u) -> f.call(i, u);
    }

    /**
     * Binds {@code (i)} to the beginning of {@code this}, returning a new function
     * of type {@code (U) -> byte}.
     *
     * @param i argument 1
     * @return a new function {@code (U u) -> byte} that calls
     *      {@code this.call(i, u)} and returns the result.
     */
    default net.mintern.functions.unary.checked.ObjToByteE bind(int i) {
        return IntObjToByteE.bind(this, i);
    }

    /**
     * Binds {@code (u)} to the end of {@code f}, returning a new function
     * of type {@code (int) -> byte}.
     *
     * @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 (int i) -> byte} that calls
     *      {@code f.call(i, u)} and returns the result.
     */
    static  net.mintern.functions.unary.checked.IntToByteE
    rbind(IntObjToByteE f, U u) {
        return (i) -> f.call(i, u);
    }

    /**
     * Binds {@code (u)} to the end of {@code this}, returning a new function
     * of type {@code (int) -> byte}.
     *
     * @param u argument 2
     * @return a new function {@code (int i) -> byte} that calls
     *      {@code this.call(i, u)} and returns the result.
     */
    default net.mintern.functions.unary.checked.IntToByteE rbind(U u) {
        return IntObjToByteE.rbind(this, u);
    }

    /**
     * Binds {@code (i, u)} to {@code f}, returning a new function
     * of type {@code () -> byte}.
     *
     * @param  the type of argument 2
     * @param  the {@code Exception} type that the operation may throw
     * @param f the unbound function
     * @param i argument 1
     * @param u argument 2
     * @return a new function {@code () -> byte} that calls
     *      {@code f.call(i, u)} and returns the result.
     */
    static  net.mintern.functions.nullary.checked.NilToByteE
    bind(IntObjToByteE f, int i, U u) {
        return () -> f.call(i, u);
    }

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