com.koloboke.function
Interface IntIntConsumer


public interface IntIntConsumer

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

See Also:
BiConsumer

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

Method Detail

accept

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

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