com.koloboke.function
Interface ShortConsumer
public interface ShortConsumer
Represents an operation that accepts a single short
-valued argument and
returns no result. This is the primitive type specialization of
Consumer
for short
. Unlike most other functional interfaces,
ShortConsumer
is expected to operate via side-effects.
- See Also:
Consumer
Method Summary |
void |
accept(short value)
Performs this operation on the given argument. |
accept
void accept(short value)
- Performs this operation on the given argument.
- Parameters:
value
- the input argument