com.koloboke.function
Interface CharCharConsumer


public interface CharCharConsumer

Represents an operation that accepts two char-valued arguments and returns no result. This is the (char, char) specialization of BiConsumer. Unlike most other functional interfaces, CharCharConsumer is expected to operate via side-effects.

See Also:
BiConsumer

Method Summary
 void accept(char a, char b)
          Performs this operation on the given arguments.
 

Method Detail

accept

void accept(char a,
            char b)
Performs this operation on the given arguments.

Parameters:
a - the first input argument
b - the second input argument