- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
A
DoubleBinaryOperator that allows for checked exceptions.- Author:
- Lukas Eder
-
Method Summary
Modifier and TypeMethodDescriptiondoubleapplyAsDouble(double left, double right) Applies this operator to the given operands.static DoubleBinaryOperatorsneaky(CheckedDoubleBinaryOperator operator) static DoubleBinaryOperatorunchecked(CheckedDoubleBinaryOperator operator) static DoubleBinaryOperatorunchecked(CheckedDoubleBinaryOperator operator, Consumer<Throwable> handler)
-
Method Details
-
applyAsDouble
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 DoubleBinaryOperator unchecked(CheckedDoubleBinaryOperator operator, Consumer<Throwable> handler)
-