Example usage for Java java.util.function DoubleUnaryOperator fields, constructors, methods, implement or subclass
The text is from its open source code.
DoubleUnaryOperator | andThen(DoubleUnaryOperator after) Returns a composed operator that first applies this operator to its input, and then applies the after operator to the result. |
double | applyAsDouble(double operand) Applies this operator to the given operand. |
DoubleUnaryOperator | compose(DoubleUnaryOperator before) Returns a composed operator that first applies the before operator to its input, and then applies this operator to the result. |
DoubleUnaryOperator | identity() Returns a unary operator that always returns its input argument. |