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