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