U
- the type of the second argument the operation@FunctionalInterface public interface IntObjConsumer<U>
int
-valued and
an object-valued argument,
and returns no result. This is
the (int,
reference)
specialization of BiConsumer
.
Unlike most other functional interfaces, IntObjConsumer
is
expected to operate via side-effects.BiConsumer
Modifier and Type | Method and Description |
---|---|
void |
accept(int a,
U b)
Performs this operation on the given arguments.
|
void accept(int a, U b)
a
- the first input argumentb
- the second input argument