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

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

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

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

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

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

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

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

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

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

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy