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

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

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

/**
 * An operation of type {@code (T, int, double) -> void}.
 *
 * @param  the type of the argument
 */
@FunctionalInterface
public interface ObjIntDblToNil extends
        net.mintern.functions.ternary.checked.ObjIntDblToNilE {

    /**
     * Returns a wrapped version of {@code f} that uses {@code toRuntime} to convert any checked
     * {@code Exception} to a {@code RuntimeException}.
     *
     * @param  the type of argument 1
     * @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.ObjIntDblToNilE#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  ObjIntDblToNil unchecked(
            java.util.function.Function toRuntime,
            net.mintern.functions.ternary.checked.ObjIntDblToNilE f) {
        return (t, i, d) -> {
            try {
                f.call(t, 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 type of argument 1
     * @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  ObjIntDblToNil unchecked(
            net.mintern.functions.ternary.checked.ObjIntDblToNilE 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 type of argument 1
     * @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  ObjIntDblToNil uncheckedIO(
            net.mintern.functions.ternary.checked.ObjIntDblToNilE f) {
        return unchecked(java.io.UncheckedIOException::new, f);
    }

    /**
     * Binds {@code (t)} to the beginning of {@code f}, returning a new function
     * of type {@code (int, double) -> void}.
     *
     * @param  the type of the argument
     * @param f the unbound function
     * @param t argument 1
     * @return a new function {@code (int i, double d) -> void} that calls
     *      {@code f.call(t, i, d)}.
     */
    static  net.mintern.functions.binary.IntDblToNil
    bind(ObjIntDblToNil f, T t) {
        return (i, d) -> f.call(t, i, d);
    }

    /**
     * Binds {@code (t)} to the beginning of {@code this}, returning a new function
     * of type {@code (int, double) -> void}.
     *
     * @param t argument 1
     * @return a new function {@code (int i, double d) -> void} that calls
     *      {@code this.call(t, i, d)}.
     */
    @Override
    default net.mintern.functions.binary.IntDblToNil bind(T t) {
        return ObjIntDblToNil.bind(this, t);
    }

    /**
     * Binds {@code (i, d)} to the end of {@code f}, returning a new function
     * of type {@code (T) -> void}.
     *
     * @param  the type of the argument
     * @param f the unbound function
     * @param i argument 2
     * @param d argument 3
     * @return a new function {@code (T t) -> void} that calls
     *      {@code f.call(t, i, d)}.
     */
    static  net.mintern.functions.unary.ObjToNil
    rbind(ObjIntDblToNil f, int i, double d) {
        return (t) -> f.call(t, i, d);
    }

    /**
     * Binds {@code (i, d)} to the end of {@code this}, returning a new function
     * of type {@code (T) -> void}.
     *
     * @param i argument 2
     * @param d argument 3
     * @return a new function {@code (T t) -> void} that calls
     *      {@code this.call(t, i, d)}.
     */
    @Override
    default net.mintern.functions.unary.ObjToNil rbind(int i, double d) {
        return ObjIntDblToNil.rbind(this, i, d);
    }

    /**
     * Binds {@code (t, i)} to the beginning of {@code f}, returning a new function
     * of type {@code (double) -> void}.
     *
     * @param  the type of the argument
     * @param f the unbound function
     * @param t argument 1
     * @param i argument 2
     * @return a new function {@code (double d) -> void} that calls
     *      {@code f.call(t, i, d)}.
     */
    static  net.mintern.functions.unary.DblToNil
    bind(ObjIntDblToNil f, T t, int i) {
        return (d) -> f.call(t, i, d);
    }

    /**
     * Binds {@code (t, i)} to the beginning of {@code this}, returning a new function
     * of type {@code (double) -> void}.
     *
     * @param t argument 1
     * @param i argument 2
     * @return a new function {@code (double d) -> void} that calls
     *      {@code this.call(t, i, d)}.
     */
    @Override
    default net.mintern.functions.unary.DblToNil bind(T t, int i) {
        return ObjIntDblToNil.bind(this, t, i);
    }

    /**
     * Binds {@code (d)} to the end of {@code f}, returning a new function
     * of type {@code (T, int) -> void}.
     *
     * @param  the type of the argument
     * @param f the unbound function
     * @param d argument 3
     * @return a new function {@code (T t, int i) -> void} that calls
     *      {@code f.call(t, i, d)}.
     */
    static  net.mintern.functions.binary.ObjIntToNil
    rbind(ObjIntDblToNil f, double d) {
        return (t, i) -> f.call(t, i, d);
    }

    /**
     * Binds {@code (d)} to the end of {@code this}, returning a new function
     * of type {@code (T, int) -> void}.
     *
     * @param d argument 3
     * @return a new function {@code (T t, int i) -> void} that calls
     *      {@code this.call(t, i, d)}.
     */
    @Override
    default net.mintern.functions.binary.ObjIntToNil rbind(double d) {
        return ObjIntDblToNil.rbind(this, d);
    }

    /**
     * Binds {@code (t, i, d)} to {@code f}, returning a new function
     * of type {@code () -> void}.
     *
     * @param  the type of the argument
     * @param f the unbound function
     * @param t argument 1
     * @param i argument 2
     * @param d argument 3
     * @return a new function {@code () -> void} that calls
     *      {@code f.call(t, i, d)}.
     */
    static  net.mintern.functions.nullary.NilToNil
    bind(ObjIntDblToNil f, T t, int i, double d) {
        return () -> f.call(t, i, d);
    }

    /**
     * Binds {@code (t, i, d)} to {@code this}, returning a new function
     * of type {@code () -> void}.
     *
     * @param t argument 1
     * @param i argument 2
     * @param d argument 3
     * @return a new function {@code () -> void} that calls
     *      {@code this.call(t, i, d)}.
     */
    @Override
    default net.mintern.functions.nullary.NilToNil bind(T t, int i, double d) {
        return ObjIntDblToNil.bind(this, t, i, d);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy