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