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