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