static <T,U,E extends Exception> ToLongBiFunction<T,U> |
ToLongBiFunctionWithException.ignored(ToLongBiFunctionWithException<T,U,E> function) |
Converts a ToLongBiFunctionWithException to a lifted
ToLongBiFunction returning 0 in case of exception.
|
static <T,U,E extends Exception> ToLongBiFunction<T,U> |
ToLongBiFunctionWithException.ignored(ToLongBiFunctionWithException<T,U,E> function,
long defaultValue) |
Converts a ToLongBiFunctionWithException to a lifted
ToLongBiFunction returning a default value in case of exception.
|
static <T,U,E extends Exception> ToLongBiFunction<T,U> |
ToLongBiFunctionWithException.lifted(ToLongBiFunctionWithException<T,U,E> function) |
Converts a ToLongBiFunctionWithException to a lifted
ToLongBiFunction returning 0 in case of exception.
|
static <T,U,E extends Exception> ToLongBiFunction<T,U> |
ToLongBiFunctionWithException.unchecked(ToLongBiFunctionWithException<T,U,E> function) |
Converts a ToLongBiFunctionWithException to a
ToLongBiFunction that wraps exception to RuntimeException .
|
static <T,U,E extends Exception> ToLongBiFunction<T,U> |
ToLongBiFunctionWithException.unchecked(ToLongBiFunctionWithException<T,U,E> function,
Function<Exception,RuntimeException> exceptionMapper) |
Converts a ToLongBiFunctionWithException to a
ToLongBiFunction that wraps exception to RuntimeException by
using the provided mapping function.
|