@FunctionalInterface public interface IntIntConsumer
int
-valued arguments
and returns no result. This is
the (int,
int)
specialization of BiConsumer
.
Unlike most other functional interfaces, IntIntConsumer
is
expected to operate via side-effects.BiConsumer
Modifier and Type | Method and Description |
---|---|
void |
accept(int a,
int b)
Performs this operation on the given arguments.
|