- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
A
DoubleUnaryOperator that allows for checked exceptions.- Author:
- Lukas Eder
-
Method Summary
Modifier and TypeMethodDescriptiondoubleapplyAsDouble(double operand) Applies this operator to the given operand.static DoubleUnaryOperatorsneaky(CheckedDoubleUnaryOperator operator) static DoubleUnaryOperatorunchecked(CheckedDoubleUnaryOperator operator) static DoubleUnaryOperatorunchecked(CheckedDoubleUnaryOperator operator, Consumer<Throwable> handler)
-
Method Details
-
applyAsDouble
Applies this operator to the given operand.- Parameters:
operand- the operand- Returns:
- the operator result
- Throws:
Throwable
-
sneaky
-
unchecked
-
unchecked
static DoubleUnaryOperator unchecked(CheckedDoubleUnaryOperator operator, Consumer<Throwable> handler)
-