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