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