Java java.util.function IntUnaryOperator fields, constructors, methods, implement or subclass

Example usage for Java java.util.function IntUnaryOperator fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for java.util.function IntUnaryOperator.

The text is from its open source code.

Method

IntUnaryOperatorandThen(IntUnaryOperator after)
Returns a composed operator that first applies this operator to its input, and then applies the after operator to the result.
intapplyAsInt(int operand)
Applies this operator to the given operand.
IntUnaryOperatorcompose(IntUnaryOperator before)
Returns a composed operator that first applies the before operator to its input, and then applies this operator to the result.
IntUnaryOperatoridentity()
Returns a unary operator that always returns its input argument.