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