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

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

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

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

    /**
     * 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.ObjIntDblToBoolE#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  ObjIntDblToBool unchecked(
            java.util.function.Function toRuntime,
            net.mintern.functions.ternary.checked.ObjIntDblToBoolE f) {
        return (t, i, d) -> {
            try {
                return 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  ObjIntDblToBool unchecked(
            net.mintern.functions.ternary.checked.ObjIntDblToBoolE 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  ObjIntDblToBool uncheckedIO(
            net.mintern.functions.ternary.checked.ObjIntDblToBoolE 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) -> boolean}.
     *
     * @param  the type of the argument
     * @param f the unbound function
     * @param t argument 1
     * @return a new function {@code (int i, double d) -> boolean} that calls
     *      {@code f.call(t, i, d)} and returns the result.
     */
    static  net.mintern.functions.binary.IntDblToBool
    bind(ObjIntDblToBool 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) -> boolean}.
     *
     * @param t argument 1
     * @return a new function {@code (int i, double d) -> boolean} that calls
     *      {@code this.call(t, i, d)} and returns the result.
     */
    @Override
    default net.mintern.functions.binary.IntDblToBool bind(T t) {
        return ObjIntDblToBool.bind(this, t);
    }

    /**
     * Binds {@code (i, d)} to the end of {@code f}, returning a new function
     * of type {@code (T) -> boolean}.
     *
     * @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) -> boolean} that calls
     *      {@code f.call(t, i, d)} and returns the result.
     */
    static  net.mintern.functions.unary.ObjToBool
    rbind(ObjIntDblToBool 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) -> boolean}.
     *
     * @param i argument 2
     * @param d argument 3
     * @return a new function {@code (T t) -> boolean} that calls
     *      {@code this.call(t, i, d)} and returns the result.
     */
    @Override
    default net.mintern.functions.unary.ObjToBool rbind(int i, double d) {
        return ObjIntDblToBool.rbind(this, i, d);
    }

    /**
     * Binds {@code (t, i)} 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 t argument 1
     * @param i argument 2
     * @return a new function {@code (double d) -> boolean} that calls
     *      {@code f.call(t, i, d)} and returns the result.
     */
    static  net.mintern.functions.unary.DblToBool
    bind(ObjIntDblToBool 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) -> boolean}.
     *
     * @param t argument 1
     * @param i argument 2
     * @return a new function {@code (double d) -> boolean} that calls
     *      {@code this.call(t, i, d)} and returns the result.
     */
    @Override
    default net.mintern.functions.unary.DblToBool bind(T t, int i) {
        return ObjIntDblToBool.bind(this, t, i);
    }

    /**
     * Binds {@code (d)} to the end of {@code f}, returning a new function
     * of type {@code (T, int) -> boolean}.
     *
     * @param  the type of the argument
     * @param f the unbound function
     * @param d argument 3
     * @return a new function {@code (T t, int i) -> boolean} that calls
     *      {@code f.call(t, i, d)} and returns the result.
     */
    static  net.mintern.functions.binary.ObjIntToBool
    rbind(ObjIntDblToBool 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) -> boolean}.
     *
     * @param d argument 3
     * @return a new function {@code (T t, int i) -> boolean} that calls
     *      {@code this.call(t, i, d)} and returns the result.
     */
    @Override
    default net.mintern.functions.binary.ObjIntToBool rbind(double d) {
        return ObjIntDblToBool.rbind(this, d);
    }

    /**
     * Binds {@code (t, i, d)} to {@code f}, returning a new function
     * of type {@code () -> boolean}.
     *
     * @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 () -> boolean} that calls
     *      {@code f.call(t, i, d)} and returns the result.
     */
    static  net.mintern.functions.nullary.NilToBool
    bind(ObjIntDblToBool 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 () -> boolean}.
     *
     * @param t argument 1
     * @param i argument 2
     * @param d argument 3
     * @return a new function {@code () -> boolean} that calls
     *      {@code this.call(t, i, d)} and returns the result.
     */
    @Override
    default net.mintern.functions.nullary.NilToBool bind(T t, int i, double d) {
        return ObjIntDblToBool.bind(this, t, i, d);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy