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