com.koloboke.function
Interface ByteObjConsumer<U>

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

public interface ByteObjConsumer<U>

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

See Also:
BiConsumer

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

Method Detail

accept

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

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