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

ternary.LongObjObjToDbl Maven / Gradle / Ivy

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

/**
 * An operation of type {@code (long, U, V) -> double}.
 *
 * @param  the type of argument 2
 * @param  the type of argument 3
 */
@FunctionalInterface
public interface LongObjObjToDbl extends
        net.mintern.functions.ternary.checked.LongObjObjToDblE {

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

    /**
     * Binds {@code (l)} to the beginning of {@code f}, returning a new function
     * of type {@code (U, V) -> double}.
     *
     * @param  the type of argument 2
     * @param  the type of argument 3
     * @param f the unbound function
     * @param l argument 1
     * @return a new function {@code (U u, V v) -> double} that calls
     *      {@code f.call(l, u, v)} and returns the result.
     */
    static  net.mintern.functions.binary.ObjObjToDbl
    bind(LongObjObjToDbl f, long l) {
        return (u, v) -> f.call(l, u, v);
    }

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

    /**
     * Binds {@code (u, v)} to the end of {@code f}, returning a new function
     * of type {@code (long) -> double}.
     *
     * @param  the type of argument 2
     * @param  the type of argument 3
     * @param f the unbound function
     * @param u argument 2
     * @param v argument 3
     * @return a new function {@code (long l) -> double} that calls
     *      {@code f.call(l, u, v)} and returns the result.
     */
    static  net.mintern.functions.unary.LongToDbl
    rbind(LongObjObjToDbl f, U u, V v) {
        return (l) -> f.call(l, u, v);
    }

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

    /**
     * Binds {@code (l, u)} to the beginning of {@code f}, returning a new function
     * of type {@code (V) -> double}.
     *
     * @param  the type of argument 2
     * @param  the type of argument 3
     * @param f the unbound function
     * @param l argument 1
     * @param u argument 2
     * @return a new function {@code (V v) -> double} that calls
     *      {@code f.call(l, u, v)} and returns the result.
     */
    static  net.mintern.functions.unary.ObjToDbl
    bind(LongObjObjToDbl f, long l, U u) {
        return (v) -> f.call(l, u, v);
    }

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

    /**
     * Binds {@code (v)} to the end of {@code f}, returning a new function
     * of type {@code (long, U) -> double}.
     *
     * @param  the type of argument 2
     * @param  the type of argument 3
     * @param f the unbound function
     * @param v argument 3
     * @return a new function {@code (long l, U u) -> double} that calls
     *      {@code f.call(l, u, v)} and returns the result.
     */
    static  net.mintern.functions.binary.LongObjToDbl
    rbind(LongObjObjToDbl f, V v) {
        return (l, u) -> f.call(l, u, v);
    }

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

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

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