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