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

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

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

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

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

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

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

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

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

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

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

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

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy