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