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

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

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

/**
 * An operation of type {@code (long, U, double) -> boolean}.
 *
 * @param  the type of the argument
 */
@FunctionalInterface
public interface LongObjDblToBool extends
        net.mintern.functions.ternary.checked.LongObjDblToBoolE {

    /**
     * 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 {@code Exception} type that the operation may throw
     * @param toRuntime if a checked exception is thrown from
     *      {@link net.mintern.functions.ternary.checked.LongObjDblToBoolE#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  LongObjDblToBool unchecked(
            java.util.function.Function toRuntime,
            net.mintern.functions.ternary.checked.LongObjDblToBoolE f) {
        return (l, u, d) -> {
            try {
                return f.call(l, 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 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  LongObjDblToBool unchecked(
            net.mintern.functions.ternary.checked.LongObjDblToBoolE 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 {@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  LongObjDblToBool uncheckedIO(
            net.mintern.functions.ternary.checked.LongObjDblToBoolE 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, double) -> boolean}.
     *
     * @param  the type of the argument
     * @param f the unbound function
     * @param l argument 1
     * @return a new function {@code (U u, double d) -> boolean} that calls
     *      {@code f.call(l, u, d)} and returns the result.
     */
    static  net.mintern.functions.binary.ObjDblToBool
    bind(LongObjDblToBool f, long l) {
        return (u, d) -> f.call(l, u, d);
    }

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

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

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

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

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

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

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

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

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