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

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

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

    /**
     * Binds {@code (b)} to the beginning of {@code f}, returning a new function
     * of type {@code (U) -> void}.
     *
     * @param  the type of argument 2
     * @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) -> void} that calls
     *      {@code f.call(b, u)}.
     */
    static  net.mintern.functions.unary.checked.ObjToNilE
    bind(ByteObjToNilE 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) -> void}.
     *
     * @param b argument 1
     * @return a new function {@code (U u) -> void} that calls
     *      {@code this.call(b, u)}.
     */
    default net.mintern.functions.unary.checked.ObjToNilE bind(byte b) {
        return ByteObjToNilE.bind(this, b);
    }

    /**
     * Binds {@code (u)} to the end of {@code f}, returning a new function
     * of type {@code (byte) -> void}.
     *
     * @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 (byte b) -> void} that calls
     *      {@code f.call(b, u)}.
     */
    static  net.mintern.functions.unary.checked.ByteToNilE
    rbind(ByteObjToNilE 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) -> void}.
     *
     * @param u argument 2
     * @return a new function {@code (byte b) -> void} that calls
     *      {@code this.call(b, u)}.
     */
    default net.mintern.functions.unary.checked.ByteToNilE rbind(U u) {
        return ByteObjToNilE.rbind(this, u);
    }

    /**
     * Binds {@code (b, u)} to {@code f}, returning a new function
     * of type {@code () -> void}.
     *
     * @param  the type of argument 2
     * @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 () -> void} that calls
     *      {@code f.call(b, u)}.
     */
    static  net.mintern.functions.nullary.checked.NilToNilE
    bind(ByteObjToNilE f, byte b, U u) {
        return () -> f.call(b, u);
    }

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