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

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

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

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

    /**
     * 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.DblIntLongToLongE#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  DblIntLongToLong unchecked(
            java.util.function.Function toRuntime,
            net.mintern.functions.ternary.checked.DblIntLongToLongE f) {
        return (d, i, l) -> {
            try {
                return f.call(d, i, l);
            } 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  DblIntLongToLong unchecked(
            net.mintern.functions.ternary.checked.DblIntLongToLongE 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  DblIntLongToLong uncheckedIO(
            net.mintern.functions.ternary.checked.DblIntLongToLongE f) {
        return unchecked(java.io.UncheckedIOException::new, f);
    }

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

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

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

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

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

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

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

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy