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