- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
Functional interface for functions mapping (double,double,double) to double.
- Version:
- 1.0
- Author:
- Christian Fries
- See Also:
DoubleUnaryOperator
-
Method Summary
Modifier and TypeMethodDescriptiondouble
applyAsDouble(double x, double y, double z)
Applies this operator to the given operands.
-
Method Details
-
applyAsDouble
double applyAsDouble(double x, double y, double z)Applies this operator to the given operands.- Parameters:
x
- the first operandy
- the second operandz
- the third operand- Returns:
- the operator result
-