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