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