@FunctionalInterface public interface DoubleDoubleToDoubleFunction
double
-valued arguments
and produces a double
-valued result.
This is the (double, double, double)
specialization of BiFunction
.
Unlike DoubleBinaryOperator
, this function is supposed to accept heterogeneous
arguments, e. g. key and value
in DoubleDoubleMap.compute(double, DoubleDoubleToDoubleFunction)
method.
BiFunction
Modifier and Type | Method and Description |
---|---|
double |
applyAsDouble(double a,
double b)
Applies this function to the given arguments.
|