public
interface
ToDoubleFunction
java.util.function.ToDoubleFunction<T> |
Represents a function that produces a double-valued result. This is the
double
-producing primitive specialization for Function
.
This is a functional interface
whose functional method is applyAsDouble(Object)
.
See also:
Public methods | |
---|---|
abstract
double
|
applyAsDouble(T value)
Applies this function to the given argument. |
double applyAsDouble (T value)
Applies this function to the given argument.
Parameters | |
---|---|
value |
T :
the function argument |
Returns | |
---|---|
double |
the function result |