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