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