public interface INumericFunction<T>
double value
into a resulting object.
Implementors of INumericFunction which may cause side effects upon evaluation are strongly encouraged to state this fact clearly in their API documentation.
| Modifier and Type | Method and Description |
|---|---|
T |
apply(double value)
Applys the function to a
double value, resulting in an object
of type T. |
T apply(double value)
double value, resulting in an object
of type T.value - a given double value.