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

ternary.ObjObjDblToDbl Maven / Gradle / Ivy

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

/**
 * An operation of type {@code (T, U, double) -> double}.
 *
 * @param  the type of argument 1
 * @param  the type of argument 2
 */
@FunctionalInterface
public interface ObjObjDblToDbl extends
        net.mintern.functions.ternary.checked.ObjObjDblToDblE {

    /**
     * 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 type of argument 2
     * @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.ObjObjDblToDblE#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  ObjObjDblToDbl unchecked(
            java.util.function.Function toRuntime,
            net.mintern.functions.ternary.checked.ObjObjDblToDblE f) {
        return (t, u, d) -> {
            try {
                return f.call(t, u, 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 type of argument 2
     * @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  ObjObjDblToDbl unchecked(
            net.mintern.functions.ternary.checked.ObjObjDblToDblE 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 type of argument 2
     * @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  ObjObjDblToDbl uncheckedIO(
            net.mintern.functions.ternary.checked.ObjObjDblToDblE f) {
        return unchecked(java.io.UncheckedIOException::new, f);
    }

    /**
     * Binds {@code (t)} to the beginning of {@code f}, returning a new function
     * of type {@code (U, double) -> double}.
     *
     * @param  the type of argument 1
     * @param  the type of argument 2
     * @param f the unbound function
     * @param t argument 1
     * @return a new function {@code (U u, double d) -> double} that calls
     *      {@code f.call(t, u, d)} and returns the result.
     */
    static  net.mintern.functions.binary.ObjDblToDbl
    bind(ObjObjDblToDbl f, T t) {
        return (u, d) -> f.call(t, u, d);
    }

    /**
     * Binds {@code (t)} to the beginning of {@code this}, returning a new function
     * of type {@code (U, double) -> double}.
     *
     * @param t argument 1
     * @return a new function {@code (U u, double d) -> double} that calls
     *      {@code this.call(t, u, d)} and returns the result.
     */
    @Override
    default net.mintern.functions.binary.ObjDblToDbl bind(T t) {
        return ObjObjDblToDbl.bind(this, t);
    }

    /**
     * Binds {@code (u, d)} to the end of {@code f}, returning a new function
     * of type {@code (T) -> double}.
     *
     * @param  the type of argument 1
     * @param  the type of argument 2
     * @param f the unbound function
     * @param u argument 2
     * @param d argument 3
     * @return a new function {@code (T t) -> double} that calls
     *      {@code f.call(t, u, d)} and returns the result.
     */
    static  net.mintern.functions.unary.ObjToDbl
    rbind(ObjObjDblToDbl f, U u, double d) {
        return (t) -> f.call(t, u, d);
    }

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

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

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

    /**
     * Binds {@code (d)} to the end of {@code f}, returning a new function
     * of type {@code (T, U) -> double}.
     *
     * @param  the type of argument 1
     * @param  the type of argument 2
     * @param f the unbound function
     * @param d argument 3
     * @return a new function {@code (T t, U u) -> double} that calls
     *      {@code f.call(t, u, d)} and returns the result.
     */
    static  net.mintern.functions.binary.ObjObjToDbl
    rbind(ObjObjDblToDbl f, double d) {
        return (t, u) -> f.call(t, u, d);
    }

    /**
     * Binds {@code (d)} to the end of {@code this}, returning a new function
     * of type {@code (T, U) -> double}.
     *
     * @param d argument 3
     * @return a new function {@code (T t, U u) -> double} that calls
     *      {@code this.call(t, u, d)} and returns the result.
     */
    @Override
    default net.mintern.functions.binary.ObjObjToDbl rbind(double d) {
        return ObjObjDblToDbl.rbind(this, d);
    }

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

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