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

ternary.LongDblLongToLong Maven / Gradle / Ivy

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

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

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

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

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

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

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

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

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

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

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy