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

binary.checked.LongByteToByteE Maven / Gradle / Ivy

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

/**
 * An operation of type {@code (long, byte) -> byte}.
 *
 * @param  the {@code Exception} type that the operation may throw
 */
@FunctionalInterface
public interface LongByteToByteE {

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

    /**
     * Binds {@code (l)} 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 l argument 1
     * @return a new function {@code (byte b) -> byte} that calls
     *      {@code f.call(l, b)} and returns the result.
     */
    static  net.mintern.functions.unary.checked.ByteToByteE
    bind(LongByteToByteE f, long l) {
        return (b) -> f.call(l, b);
    }

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

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

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

    /**
     * Binds {@code (l, 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 l argument 1
     * @param b argument 2
     * @return a new function {@code () -> byte} that calls
     *      {@code f.call(l, b)} and returns the result.
     */
    static  net.mintern.functions.nullary.checked.NilToByteE
    bind(LongByteToByteE f, long l, byte b) {
        return () -> f.call(l, b);
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy