@FunctionalInterface public interface CharCharConsumer
char
-valued arguments
and returns no result. This is
the (char,
char)
specialization of BiConsumer
.
Unlike most other functional interfaces, CharCharConsumer
is
expected to operate via side-effects.BiConsumer
Modifier and Type | Method and Description |
---|---|
void |
accept(char a,
char b)
Performs this operation on the given arguments.
|