Example usage for Java java.util.function UnaryOperator fields, constructors, methods, implement or subclass
The text is from its open source code.
Function | andThen(Function super R, ? extends V> after) Returns a composed function that first applies this function to its input, and then applies the after function to the result. |
R | apply(T t) Applies this function to the given argument. |
UnaryOperator | identity() Returns a unary operator that always returns its input argument. |