static <E extends Exception> IntBinaryOperator |
IntBinaryOperatorWithException.ignored(IntBinaryOperatorWithException<E> function) |
Converts a IntBinaryOperatorWithException to a lifted
IntBinaryOperator with 0 as return value in case of
exception.
|
static <E extends Exception> IntBinaryOperator |
IntBinaryOperatorWithException.ignored(IntBinaryOperatorWithException<E> function,
int defaultValue) |
Converts a IntBinaryOperatorWithException to a lifted
IntBinaryOperator with a default value as return value in case of
exception.
|
static <E extends Exception> IntBinaryOperator |
IntBinaryOperatorWithException.lifted(IntBinaryOperatorWithException<E> function) |
Converts a IntBinaryOperatorWithException to a lifted
IntBinaryOperator with 0 as return value in case of
exception.
|
static <E extends Exception> IntBinaryOperator |
IntBinaryOperatorWithException.unchecked(IntBinaryOperatorWithException<E> function) |
Converts a IntBinaryOperatorWithException to a
IntBinaryOperator that convert exception to RuntimeException .
|
static <E extends Exception> IntBinaryOperator |
IntBinaryOperatorWithException.unchecked(IntBinaryOperatorWithException<E> function,
Function<Exception,RuntimeException> exceptionMapper) |
Converts a IntBinaryOperatorWithException to a
IntBinaryOperator that convert exception to RuntimeException
by using the provided mapping function.
|