T - the type of the object parameter@FunctionalInterface public interface ObjDoubleToDoubleFunction<T>
double - that returns a double.
This takes two arguments and returns an object result.
| Modifier and Type | Method and Description |
|---|---|
default ObjDoubleToDoubleFunction<T> |
andThen(DoubleUnaryOperator other)
Returns a new function that composes this function and the specified function.
|
double |
apply(T obj,
double value)
Applies the function.
|
double apply(T obj, double value)
obj - the first argumentvalue - the second argumentdefault ObjDoubleToDoubleFunction<T> andThen(DoubleUnaryOperator other)
This returns a composed function that applies the input to this function and then converts the result using the specified function.
other - the second functionNullPointerException - if the other function is nullCopyright 2009-Present by OpenGamma Inc. and individual contributors
Apache v2 licensed
Additional documentation can be found at strata.opengamma.io.