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

net.mintern.functions.ternary.checked.LongLongIntToDblE Maven / Gradle / Ivy

The newest version!
package net.mintern.functions.ternary.checked;

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

    /**
     * Performs this operation.
     *
     * @param l1 argument 1
     * @param l2 argument 2
     * @param i argument 3
     * @return the result of the operation
     * @throws E if the operation cannot be completed
     */
    double call(long l1, long l2, int i) throws E;

    /**
     * Binds {@code (l1)} to the beginning of {@code f}, returning a new function
     * of type {@code (long, int) -> double}.
     *
     * @param  the {@code Exception} type that the operation may throw
     * @param f the unbound function
     * @param l1 argument 1
     * @return a new function {@code (long l2, int i) -> double} that calls
     *      {@code f.call(l1, l2, i)} and returns the result.
     */
    static  net.mintern.functions.binary.checked.LongIntToDblE
    bind(LongLongIntToDblE f, long l1) {
        return (l2, i) -> f.call(l1, l2, i);
    }

    /**
     * Binds {@code (l1)} to the beginning of {@code this}, returning a new function
     * of type {@code (long, int) -> double}.
     *
     * @param l1 argument 1
     * @return a new function {@code (long l2, int i) -> double} that calls
     *      {@code this.call(l1, l2, i)} and returns the result.
     */
    default net.mintern.functions.binary.checked.LongIntToDblE bind(long l1) {
        return LongLongIntToDblE.bind(this, l1);
    }

    /**
     * Binds {@code (l2, i)} 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 l2 argument 2
     * @param i argument 3
     * @return a new function {@code (long l1) -> double} that calls
     *      {@code f.call(l1, l2, i)} and returns the result.
     */
    static  net.mintern.functions.unary.checked.LongToDblE
    rbind(LongLongIntToDblE f, long l2, int i) {
        return (l1) -> f.call(l1, l2, i);
    }

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

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

    /**
     * Binds {@code (l1, l2)} to the beginning of {@code this}, returning a new function
     * of type {@code (int) -> double}.
     *
     * @param l1 argument 1
     * @param l2 argument 2
     * @return a new function {@code (int i) -> double} that calls
     *      {@code this.call(l1, l2, i)} and returns the result.
     */
    default net.mintern.functions.unary.checked.IntToDblE bind(long l1, long l2) {
        return LongLongIntToDblE.bind(this, l1, l2);
    }

    /**
     * Binds {@code (i)} to the end of {@code f}, returning a new function
     * of type {@code (long, long) -> double}.
     *
     * @param  the {@code Exception} type that the operation may throw
     * @param f the unbound function
     * @param i argument 3
     * @return a new function {@code (long l1, long l2) -> double} that calls
     *      {@code f.call(l1, l2, i)} and returns the result.
     */
    static  net.mintern.functions.binary.checked.LongLongToDblE
    rbind(LongLongIntToDblE f, int i) {
        return (l1, l2) -> f.call(l1, l2, i);
    }

    /**
     * Binds {@code (i)} to the end of {@code this}, returning a new function
     * of type {@code (long, long) -> double}.
     *
     * @param i argument 3
     * @return a new function {@code (long l1, long l2) -> double} that calls
     *      {@code this.call(l1, l2, i)} and returns the result.
     */
    default net.mintern.functions.binary.checked.LongLongToDblE rbind(int i) {
        return LongLongIntToDblE.rbind(this, i);
    }

    /**
     * Binds {@code (l1, l2, i)} 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 l1 argument 1
     * @param l2 argument 2
     * @param i argument 3
     * @return a new function {@code () -> double} that calls
     *      {@code f.call(l1, l2, i)} and returns the result.
     */
    static  net.mintern.functions.nullary.checked.NilToDblE
    bind(LongLongIntToDblE f, long l1, long l2, int i) {
        return () -> f.call(l1, l2, i);
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy