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

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

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

    /**
     * Binds {@code (ch)} to the beginning of {@code f}, returning a new function
     * of type {@code (byte) -> void}.
     *
     * @param  the {@code Exception} type that the operation may throw
     * @param f the unbound function
     * @param ch argument 1
     * @return a new function {@code (byte b) -> void} that calls
     *      {@code f.call(ch, b)}.
     */
    static  net.mintern.functions.unary.checked.ByteToNilE
    bind(CharByteToNilE f, char ch) {
        return (b) -> f.call(ch, b);
    }

    /**
     * Binds {@code (ch)} to the beginning of {@code this}, returning a new function
     * of type {@code (byte) -> void}.
     *
     * @param ch argument 1
     * @return a new function {@code (byte b) -> void} that calls
     *      {@code this.call(ch, b)}.
     */
    default net.mintern.functions.unary.checked.ByteToNilE bind(char ch) {
        return CharByteToNilE.bind(this, ch);
    }

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

    /**
     * Binds {@code (b)} to the end of {@code this}, returning a new function
     * of type {@code (char) -> void}.
     *
     * @param b argument 2
     * @return a new function {@code (char ch) -> void} that calls
     *      {@code this.call(ch, b)}.
     */
    default net.mintern.functions.unary.checked.CharToNilE rbind(byte b) {
        return CharByteToNilE.rbind(this, b);
    }

    /**
     * Binds {@code (ch, b)} to {@code f}, returning a new function
     * of type {@code () -> void}.
     *
     * @param  the {@code Exception} type that the operation may throw
     * @param f the unbound function
     * @param ch argument 1
     * @param b argument 2
     * @return a new function {@code () -> void} that calls
     *      {@code f.call(ch, b)}.
     */
    static  net.mintern.functions.nullary.checked.NilToNilE
    bind(CharByteToNilE f, char ch, byte b) {
        return () -> f.call(ch, b);
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy