|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface DoubleDoubleToDoubleFunction
Represents a function that accepts
two 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
Method Summary | |
---|---|
double |
applyAsDouble(double a,
double b)
Applies this function to the given arguments. |
Method Detail |
---|
double applyAsDouble(double a, double b)
a
- the first function argumentb
- the second function argument
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |