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