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