- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
A
LongBinaryOperator that allows for checked exceptions.- Author:
- Lukas Eder
-
Method Summary
Modifier and TypeMethodDescriptionlongapplyAsLong(long left, long right) Applies this operator to the given operands.static LongBinaryOperatorsneaky(CheckedLongBinaryOperator operator) static LongBinaryOperatorunchecked(CheckedLongBinaryOperator operator) static LongBinaryOperatorunchecked(CheckedLongBinaryOperator operator, Consumer<Throwable> handler)
-
Method Details
-
applyAsLong
Applies this operator to the given operands.- Parameters:
left- the first operandright- the second operand- Returns:
- the operator result
- Throws:
Throwable
-
sneaky
-
unchecked
-
unchecked
static LongBinaryOperator unchecked(CheckedLongBinaryOperator operator, Consumer<Throwable> handler)
-