com.koloboke.function
Interface LongIntConsumer


public interface LongIntConsumer

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

See Also:
BiConsumer

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

Method Detail

accept

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

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