com.koloboke.function
Interface LongByteConsumer
public interface LongByteConsumer
Represents an operation that accepts
a long-valued and
a byte-valued argument,
and returns no result. This is
the (long,
byte) specialization of BiConsumer.
Unlike most other functional interfaces, LongByteConsumer is
expected to operate via side-effects.
- See Also:
BiConsumer
|
Method Summary |
void |
accept(long a,
byte b)
Performs this operation on the given arguments. |
accept
void accept(long a,
byte b)
- Performs this operation on the given arguments.
- Parameters:
a - the first input argumentb - the second input argument