com.koloboke.function
Interface ShortShortConsumer


public interface ShortShortConsumer

Represents an operation that accepts two short-valued arguments and returns no result. This is the (short, short) specialization of BiConsumer. Unlike most other functional interfaces, ShortShortConsumer is expected to operate via side-effects.

See Also:
BiConsumer

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

Method Detail

accept

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

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