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