com.koloboke.function
Interface CharObjConsumer<U>

Type Parameters:
U - the type of the second argument the operation

public interface CharObjConsumer<U>

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

See Also:
BiConsumer

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

Method Detail

accept

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

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