@FunctionalInterface public interface ObjCharConsumer<T>
char-valued argument, and returns no result. This is the
(reference, long) specialization of BiConsumer for char. Unlike most other functional
interfaces, ObjCharConsumer is expected to operate via side effects.
This is a functional interface whose functional method is
accept(Object, char).
BiConsumer| Modifier and Type | Method and Description |
|---|---|
void |
accept(T t,
char value)
Performs this operation on the given arguments.
|
void accept(T t, char value)
t - the first input argumentvalue - the second input argumentCopyright © 2024. All rights reserved.