com.koloboke.function
Interface DoubleFloatToFloatFunction
public interface DoubleFloatToFloatFunction
Represents a function that accepts
a double
-valued and
a float
-valued argument
and produces a float
-valued result.
This is the (double, float, float)
specialization of BiFunction
.
- See Also:
BiFunction
Method Summary |
float |
applyAsFloat(double a,
float b)
Applies this function to the given arguments. |
applyAsFloat
float applyAsFloat(double a,
float b)
- Applies this function to the given arguments.
- Parameters:
a
- the first function argumentb
- the second function argument
- Returns:
- the function result