com.koloboke.function
Interface ObjDoubleToDoubleFunction<T>
- Type Parameters:
T - the type of the first argument to the function
public interface ObjDoubleToDoubleFunction<T>
Represents a function that accepts
an object-valued and
a double-valued argument
and produces a double-valued result.
This is the (reference, double, double)
specialization of BiFunction.
- See Also:
BiFunction
|
Method Summary |
double |
applyAsDouble(T a,
double b)
Applies this function to the given arguments. |
applyAsDouble
double applyAsDouble(T a,
double b)
- Applies this function to the given arguments.
- Parameters:
a - the first function argumentb - the second function argument
- Returns:
- the function result