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