com.koloboke.function
Interface ByteLongConsumer


public interface ByteLongConsumer

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

See Also:
BiConsumer

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

Method Detail

accept

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

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