Interface FloatToDoubleFunction
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
Functional interface to apply a function to a single
float input and produce a single double result.-
Method Summary
Modifier and TypeMethodDescriptiondoubleapplyAsDouble(float value) Apply this function tovalue.
-
Method Details
-
applyAsDouble
double applyAsDouble(float value) Apply this function tovalue.- Parameters:
value- Thefloatinput- Returns:
- The
doubleresult
-