com.koloboke.function
Interface CharConsumer


public interface CharConsumer

Represents an operation that accepts a single char-valued argument and returns no result. This is the primitive type specialization of Consumer for char. Unlike most other functional interfaces, CharConsumer is expected to operate via side-effects.

See Also:
Consumer

Method Summary
 void accept(char value)
          Performs this operation on the given argument.
 

Method Detail

accept

void accept(char value)
Performs this operation on the given argument.

Parameters:
value - the input argument