com.koloboke.function
Interface ObjLongConsumer<T>

Type Parameters:
T - the type of the first argument to the operation

public interface ObjLongConsumer<T>

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

See Also:
BiConsumer

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

Method Detail

accept

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

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