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

binary.checked.ByteObjToObjE Maven / Gradle / Ivy

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

/**
 * An operation of type {@code (byte, U) -> R}.
 *
 * @param  the type of argument 2
 * @param  the type of the return value
 * @param  the {@code Exception} type that the operation may throw
 */
@FunctionalInterface
public interface ByteObjToObjE {

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

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

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

    /**
     * Binds {@code (u)} to the end of {@code f}, returning a new function
     * of type {@code (byte) -> R}.
     *
     * @param  the type of argument 2
     * @param  the type of the return value
     * @param  the {@code Exception} type that the operation may throw
     * @param f the unbound function
     * @param u argument 2
     * @return a new function {@code (byte b) -> R} that calls
     *      {@code f.call(b, u)} and returns the result.
     */
    static  net.mintern.functions.unary.checked.ByteToObjE
    rbind(ByteObjToObjE f, U u) {
        return (b) -> f.call(b, u);
    }

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

    /**
     * Binds {@code (b, u)} to {@code f}, returning a new function
     * of type {@code () -> R}.
     *
     * @param  the type of argument 2
     * @param  the type of the return value
     * @param  the {@code Exception} type that the operation may throw
     * @param f the unbound function
     * @param b argument 1
     * @param u argument 2
     * @return a new function {@code () -> R} that calls
     *      {@code f.call(b, u)} and returns the result.
     */
    @SuppressWarnings("unchecked") // maven spuriously warns about a type error in this case
    static  net.mintern.functions.nullary.checked.NilToObjE
    bind(ByteObjToObjE f, byte b, U u) {
        return () -> f.call(b, u);
    }

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