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

net.mintern.functions.ternary.IntLongDblToDbl Maven / Gradle / Ivy

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

/**
 * An operation of type {@code (int, long, double) -> double}.
 *
 */
@FunctionalInterface
public interface IntLongDblToDbl extends
        net.mintern.functions.ternary.checked.IntLongDblToDblE {

    /**
     * Returns a wrapped version of {@code f} that uses {@code toRuntime} to convert any checked
     * {@code Exception} to a {@code RuntimeException}.
     *
     * @param  the {@code Exception} type that the operation may throw
     * @param toRuntime if a checked exception is thrown from
     *      {@link net.mintern.functions.ternary.checked.IntLongDblToDblE#call}, then this function
     *      is called in in order to convert it to a {@code RuntimeException}
     * @param f the operation to wrap
     * @return a wrapped version of {@code f} that does not throw checked exceptions
     */
    @SuppressWarnings("unchecked")
    static  IntLongDblToDbl unchecked(
            java.util.function.Function toRuntime,
            net.mintern.functions.ternary.checked.IntLongDblToDblE f) {
        return (i, l, d) -> {
            try {
                return f.call(i, l, d);
            } catch (RuntimeException e) {
                throw e;
            } catch (Exception e) {
                throw toRuntime.apply((E) e);
            }
        };
    }

    /**
     * Returns a wrapped version of {@code f} that wraps any checked {@code Exception} with a
     * {@code RuntimeException}.
     *
     * @param  the {@code Exception} type that the operation may throw
     * @param f the operation to wrap
     * @return a wrapped version of {@code f} that does not throw checked exceptions
     */
    static  IntLongDblToDbl unchecked(
            net.mintern.functions.ternary.checked.IntLongDblToDblE f) {
        return unchecked(RuntimeException::new, f);
    }

    /**
     * Returns a wrapped version of {@code f} that wraps any {@code IOException} with an
     * {@link java.io.UncheckedIOException}.
     *
     * @param  the {@code Exception} type that the operation may throw
     * @param f the operation to wrap
     * @return a wrapped version of {@code f} that throws {@code UncheckedIOException} instead of
     *      {@code IOException}
     */
    static  IntLongDblToDbl uncheckedIO(
            net.mintern.functions.ternary.checked.IntLongDblToDblE f) {
        return unchecked(java.io.UncheckedIOException::new, f);
    }

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

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

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy