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

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

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

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

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

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

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy