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