T
- the type of the input to the operationpublic interface BiConsumer<T,U>
BiConsumer
is expected to operate via side-effects.
This is a functional interface
whose functional method is accept(Object, Object)
.
Modifier and Type | Method and Description |
---|---|
void |
accept(T t,
U u)
Performs this operation on the given argument.
|