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

ternary.checked.LongDblIntToDblE Maven / Gradle / Ivy

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

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

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

    /**
     * Binds {@code (l)} to the beginning of {@code f}, returning a new function
     * of type {@code (double, int) -> 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 (double d, int i) -> double} that calls
     *      {@code f.call(l, d, i)} and returns the result.
     */
    static  net.mintern.functions.binary.checked.DblIntToDblE
    bind(LongDblIntToDblE f, long l) {
        return (d, i) -> f.call(l, d, i);
    }

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

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

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

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

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

    /**
     * Binds {@code (i)} to the end of {@code f}, returning a new function
     * of type {@code (long, double) -> 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 l, double d) -> double} that calls
     *      {@code f.call(l, d, i)} and returns the result.
     */
    static  net.mintern.functions.binary.checked.LongDblToDblE
    rbind(LongDblIntToDblE f, int i) {
        return (l, d) -> f.call(l, d, i);
    }

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy