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

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

    /**
     * Performs this operation.
     *
     * @param l argument 1
     * @param d argument 2
     * @param i argument 3
     * @throws E if the operation cannot be completed
     */
    void 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) -> void}.
     *
     * @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) -> void} that calls
     *      {@code f.call(l, d, i)}.
     */
    static  net.mintern.functions.binary.checked.DblIntToNilE
    bind(LongDblIntToNilE 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) -> void}.
     *
     * @param l argument 1
     * @return a new function {@code (double d, int i) -> void} that calls
     *      {@code this.call(l, d, i)}.
     */
    default net.mintern.functions.binary.checked.DblIntToNilE bind(long l) {
        return LongDblIntToNilE.bind(this, l);
    }

    /**
     * Binds {@code (d, i)} to the end of {@code f}, returning a new function
     * of type {@code (long) -> void}.
     *
     * @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) -> void} that calls
     *      {@code f.call(l, d, i)}.
     */
    static  net.mintern.functions.unary.checked.LongToNilE
    rbind(LongDblIntToNilE 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) -> void}.
     *
     * @param d argument 2
     * @param i argument 3
     * @return a new function {@code (long l) -> void} that calls
     *      {@code this.call(l, d, i)}.
     */
    default net.mintern.functions.unary.checked.LongToNilE rbind(double d, int i) {
        return LongDblIntToNilE.rbind(this, d, i);
    }

    /**
     * Binds {@code (l, d)} to the beginning of {@code f}, returning a new function
     * of type {@code (int) -> void}.
     *
     * @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) -> void} that calls
     *      {@code f.call(l, d, i)}.
     */
    static  net.mintern.functions.unary.checked.IntToNilE
    bind(LongDblIntToNilE 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) -> void}.
     *
     * @param l argument 1
     * @param d argument 2
     * @return a new function {@code (int i) -> void} that calls
     *      {@code this.call(l, d, i)}.
     */
    default net.mintern.functions.unary.checked.IntToNilE bind(long l, double d) {
        return LongDblIntToNilE.bind(this, l, d);
    }

    /**
     * Binds {@code (i)} to the end of {@code f}, returning a new function
     * of type {@code (long, double) -> void}.
     *
     * @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) -> void} that calls
     *      {@code f.call(l, d, i)}.
     */
    static  net.mintern.functions.binary.checked.LongDblToNilE
    rbind(LongDblIntToNilE 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) -> void}.
     *
     * @param i argument 3
     * @return a new function {@code (long l, double d) -> void} that calls
     *      {@code this.call(l, d, i)}.
     */
    default net.mintern.functions.binary.checked.LongDblToNilE rbind(int i) {
        return LongDblIntToNilE.rbind(this, i);
    }

    /**
     * Binds {@code (l, d, i)} to {@code f}, returning a new function
     * of type {@code () -> void}.
     *
     * @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 () -> void} that calls
     *      {@code f.call(l, d, i)}.
     */
    static  net.mintern.functions.nullary.checked.NilToNilE
    bind(LongDblIntToNilE 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 () -> void}.
     *
     * @param l argument 1
     * @param d argument 2
     * @param i argument 3
     * @return a new function {@code () -> void} that calls
     *      {@code this.call(l, d, i)}.
     */
    default net.mintern.functions.nullary.checked.NilToNilE bind(long l, double d, int i) {
        return LongDblIntToNilE.bind(this, l, d, i);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy