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

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

Introduction

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

The text is from its open source code.

Implementation

java.util.function.DoubleUnaryOperator has the following implementations.
Click this link to see all its implementation.

Method

DoubleUnaryOperatorandThen(DoubleUnaryOperator after)
Returns a composed operator that first applies this operator to its input, and then applies the after operator to the result.
doubleapplyAsDouble(double operand)
Applies this operator to the given operand.
DoubleUnaryOperatorcompose(DoubleUnaryOperator before)
Returns a composed operator that first applies the before operator to its input, and then applies this operator to the result.
DoubleUnaryOperatoridentity()
Returns a unary operator that always returns its input argument.