@FunctionalInterface public interface CheckedToLongBiFunction<T,U>
ToLongBiFunction that allows for checked exceptions.| Modifier and Type | Method and Description |
|---|---|
long |
applyAsLong(T t,
U u)
Applies this function to the given arguments.
|
static <T,U> java.util.function.ToLongBiFunction<T,U> |
unchecked(CheckedToLongBiFunction<T,U> function) |
static <T,U> java.util.function.ToLongBiFunction<T,U> |
unchecked(CheckedToLongBiFunction<T,U> function,
java.util.function.Consumer<Throwable> handler) |
long applyAsLong(T t, U u) throws Throwable
t - the first function argumentu - the second function argumentThrowablestatic <T,U> java.util.function.ToLongBiFunction<T,U> unchecked(CheckedToLongBiFunction<T,U> function)
Unchecked#toLongBiFunction(CheckedToLongBiFunction)}static <T,U> java.util.function.ToLongBiFunction<T,U> unchecked(CheckedToLongBiFunction<T,U> function, java.util.function.Consumer<Throwable> handler)
Unchecked#toLongBiFunction(CheckedToLongBiFunction, Consumer)}Copyright © 2016. All Rights Reserved.