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