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

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

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

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

    /**
     * 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.DblIntLongToIntE#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  DblIntLongToInt unchecked(
            java.util.function.Function toRuntime,
            net.mintern.functions.ternary.checked.DblIntLongToIntE 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  DblIntLongToInt unchecked(
            net.mintern.functions.ternary.checked.DblIntLongToIntE 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  DblIntLongToInt uncheckedIO(
            net.mintern.functions.ternary.checked.DblIntLongToIntE 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) -> int}.
     *
     * @param f the unbound function
     * @param d argument 1
     * @return a new function {@code (int i, long l) -> int} that calls
     *      {@code f.call(d, i, l)} and returns the result.
     */
    static  net.mintern.functions.binary.IntLongToInt
    bind(DblIntLongToInt 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) -> int}.
     *
     * @param d argument 1
     * @return a new function {@code (int i, long l) -> int} that calls
     *      {@code this.call(d, i, l)} and returns the result.
     */
    @Override
    default net.mintern.functions.binary.IntLongToInt bind(double d) {
        return DblIntLongToInt.bind(this, d);
    }

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

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy