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

ternary.DblLongDblToNil Maven / Gradle / Ivy

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

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

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

    /**
     * Binds {@code (d1)} to the beginning of {@code f}, returning a new function
     * of type {@code (long, double) -> void}.
     *
     * @param f the unbound function
     * @param d1 argument 1
     * @return a new function {@code (long l, double d3) -> void} that calls
     *      {@code f.call(d1, l, d3)}.
     */
    static  net.mintern.functions.binary.LongDblToNil
    bind(DblLongDblToNil f, double d1) {
        return (l, d3) -> f.call(d1, l, d3);
    }

    /**
     * Binds {@code (d1)} to the beginning of {@code this}, returning a new function
     * of type {@code (long, double) -> void}.
     *
     * @param d1 argument 1
     * @return a new function {@code (long l, double d3) -> void} that calls
     *      {@code this.call(d1, l, d3)}.
     */
    @Override
    default net.mintern.functions.binary.LongDblToNil bind(double d1) {
        return DblLongDblToNil.bind(this, d1);
    }

    /**
     * Binds {@code (l, d3)} to the end of {@code f}, returning a new function
     * of type {@code (double) -> void}.
     *
     * @param f the unbound function
     * @param l argument 2
     * @param d3 argument 3
     * @return a new function {@code (double d1) -> void} that calls
     *      {@code f.call(d1, l, d3)}.
     */
    static  net.mintern.functions.unary.DblToNil
    rbind(DblLongDblToNil f, long l, double d3) {
        return (d1) -> f.call(d1, l, d3);
    }

    /**
     * Binds {@code (l, d3)} to the end of {@code this}, returning a new function
     * of type {@code (double) -> void}.
     *
     * @param l argument 2
     * @param d3 argument 3
     * @return a new function {@code (double d1) -> void} that calls
     *      {@code this.call(d1, l, d3)}.
     */
    @Override
    default net.mintern.functions.unary.DblToNil rbind(long l, double d3) {
        return DblLongDblToNil.rbind(this, l, d3);
    }

    /**
     * Binds {@code (d1, l)} to the beginning of {@code f}, returning a new function
     * of type {@code (double) -> void}.
     *
     * @param f the unbound function
     * @param d1 argument 1
     * @param l argument 2
     * @return a new function {@code (double d3) -> void} that calls
     *      {@code f.call(d1, l, d3)}.
     */
    static  net.mintern.functions.unary.DblToNil
    bind(DblLongDblToNil f, double d1, long l) {
        return (d3) -> f.call(d1, l, d3);
    }

    /**
     * Binds {@code (d1, l)} to the beginning of {@code this}, returning a new function
     * of type {@code (double) -> void}.
     *
     * @param d1 argument 1
     * @param l argument 2
     * @return a new function {@code (double d3) -> void} that calls
     *      {@code this.call(d1, l, d3)}.
     */
    @Override
    default net.mintern.functions.unary.DblToNil bind(double d1, long l) {
        return DblLongDblToNil.bind(this, d1, l);
    }

    /**
     * Binds {@code (d3)} to the end of {@code f}, returning a new function
     * of type {@code (double, long) -> void}.
     *
     * @param f the unbound function
     * @param d3 argument 3
     * @return a new function {@code (double d1, long l) -> void} that calls
     *      {@code f.call(d1, l, d3)}.
     */
    static  net.mintern.functions.binary.DblLongToNil
    rbind(DblLongDblToNil f, double d3) {
        return (d1, l) -> f.call(d1, l, d3);
    }

    /**
     * Binds {@code (d3)} to the end of {@code this}, returning a new function
     * of type {@code (double, long) -> void}.
     *
     * @param d3 argument 3
     * @return a new function {@code (double d1, long l) -> void} that calls
     *      {@code this.call(d1, l, d3)}.
     */
    @Override
    default net.mintern.functions.binary.DblLongToNil rbind(double d3) {
        return DblLongDblToNil.rbind(this, d3);
    }

    /**
     * Binds {@code (d1, l, d3)} to {@code f}, returning a new function
     * of type {@code () -> void}.
     *
     * @param f the unbound function
     * @param d1 argument 1
     * @param l argument 2
     * @param d3 argument 3
     * @return a new function {@code () -> void} that calls
     *      {@code f.call(d1, l, d3)}.
     */
    static  net.mintern.functions.nullary.NilToNil
    bind(DblLongDblToNil f, double d1, long l, double d3) {
        return () -> f.call(d1, l, d3);
    }

    /**
     * Binds {@code (d1, l, d3)} to {@code this}, returning a new function
     * of type {@code () -> void}.
     *
     * @param d1 argument 1
     * @param l argument 2
     * @param d3 argument 3
     * @return a new function {@code () -> void} that calls
     *      {@code this.call(d1, l, d3)}.
     */
    @Override
    default net.mintern.functions.nullary.NilToNil bind(double d1, long l, double d3) {
        return DblLongDblToNil.bind(this, d1, l, d3);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy