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

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

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

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

    /**
     * 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
     */
    R 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) -> R}.
     *
     * @param  the type of the return value
     * @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) -> R} that calls
     *      {@code f.call(l, d, i)} and returns the result.
     */
    static  net.mintern.functions.binary.checked.DblIntToObjE
    bind(LongDblIntToObjE 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) -> R}.
     *
     * @param l argument 1
     * @return a new function {@code (double d, int i) -> R} that calls
     *      {@code this.call(l, d, i)} and returns the result.
     */
    default net.mintern.functions.binary.checked.DblIntToObjE bind(long l) {
        return LongDblIntToObjE.bind(this, l);
    }

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

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

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

    /**
     * Binds {@code (l, d, i)} to {@code f}, returning a new function
     * of type {@code () -> R}.
     *
     * @param  the type of the return value
     * @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 () -> R} that calls
     *      {@code f.call(l, d, i)} and returns the result.
     */
    @SuppressWarnings("unchecked") // maven spuriously warns about a type error in this case
    static  net.mintern.functions.nullary.checked.NilToObjE
    bind(LongDblIntToObjE 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 () -> R}.
     *
     * @param l argument 1
     * @param d argument 2
     * @param i argument 3
     * @return a new function {@code () -> R} that calls
     *      {@code this.call(l, d, i)} and returns the result.
     */
    default net.mintern.functions.nullary.checked.NilToObjE bind(long l, double d, int i) {
        return LongDblIntToObjE.bind(this, l, d, i);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy