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

binary.checked.CharLongToByteE Maven / Gradle / Ivy

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

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

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

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

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

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

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy