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