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

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

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

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

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

    /**
     * Binds {@code (ch)} 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 ch argument 2
     * @return a new function {@code (byte b) -> R} that calls
     *      {@code f.call(b, ch)} and returns the result.
     */
    static  net.mintern.functions.unary.checked.ByteToObjE
    rbind(ByteCharToObjE f, char ch) {
        return (b) -> f.call(b, ch);
    }

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy