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

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

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

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

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

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

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

    /**
     * Binds {@code (b1, b2)} 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 b1 argument 1
     * @param b2 argument 2
     * @return a new function {@code () -> R} that calls
     *      {@code f.call(b1, b2)} and returns the result.
     */
    @SuppressWarnings("unchecked") // maven spuriously warns about a type error in this case
    static  net.mintern.functions.nullary.checked.NilToObjE
    bind(ByteByteToObjE f, byte b1, byte b2) {
        return () -> f.call(b1, b2);
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy