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

ternary.DblIntLongToNil Maven / Gradle / Ivy

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

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

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

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

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

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy