com.koloboke.function
Interface IntObjConsumer<U>

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

public interface IntObjConsumer<U>

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

See Also:
BiConsumer

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

Method Detail

accept

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

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