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

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

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

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

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

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

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

    /**
     * Binds {@code (l, ch)} to {@code f}, returning a new function
     * of type {@code () -> double}.
     *
     * @param  the {@code Exception} type that the operation may throw
     * @param f the unbound function
     * @param l argument 1
     * @param ch argument 2
     * @return a new function {@code () -> double} that calls
     *      {@code f.call(l, ch)} and returns the result.
     */
    static  net.mintern.functions.nullary.checked.NilToDblE
    bind(LongCharToDblE f, long l, char ch) {
        return () -> f.call(l, ch);
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy