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

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

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

/**
 * An operation of type {@code (long, int, V) -> int}.
 *
 * @param  the type of the argument
 */
@FunctionalInterface
public interface LongIntObjToInt extends
        net.mintern.functions.ternary.checked.LongIntObjToIntE {

    /**
     * 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 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.LongIntObjToIntE#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  LongIntObjToInt unchecked(
            java.util.function.Function toRuntime,
            net.mintern.functions.ternary.checked.LongIntObjToIntE f) {
        return (l, i, v) -> {
            try {
                return f.call(l, i, 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 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  LongIntObjToInt unchecked(
            net.mintern.functions.ternary.checked.LongIntObjToIntE 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 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  LongIntObjToInt uncheckedIO(
            net.mintern.functions.ternary.checked.LongIntObjToIntE f) {
        return unchecked(java.io.UncheckedIOException::new, f);
    }

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

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

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

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

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

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

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

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy