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

ternary.LongIntDblToLong Maven / Gradle / Ivy

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

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

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

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

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

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

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

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

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

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

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy