com.koloboke.function
Interface CharDoubleConsumer


public interface CharDoubleConsumer

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

See Also:
BiConsumer

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

Method Detail

accept

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

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