com.koloboke.function
Interface ByteConsumer
public interface ByteConsumer
Represents an operation that accepts a single byte
-valued argument and
returns no result. This is the primitive type specialization of
Consumer
for byte
. Unlike most other functional interfaces,
ByteConsumer
is expected to operate via side-effects.
- See Also:
Consumer
Method Summary |
void |
accept(byte value)
Performs this operation on the given argument. |
accept
void accept(byte value)
- Performs this operation on the given argument.
- Parameters:
value
- the input argument