- Enclosing interface:
 LongStream
- Functional Interface:
 - This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
 
Represents an operation that accepts a 
long-valued argument
 and a LongConsumer, and returns no result. This functional interface is
 used by LongStream.mapMulti
 to replace a long value with zero or more long values.
 This is a functional interface
 whose functional method is accept(long, LongConsumer).
- Since:
 - 16
 - See Also:
 
- 
Method Summary
Modifier and TypeMethodDescriptionvoidaccept(long value, LongConsumer lc) Replaces the givenvaluewith zero or more values by feeding the mapped values to thelcconsumer. 
- 
Method Details
- 
accept
Replaces the givenvaluewith zero or more values by feeding the mapped values to thelcconsumer.- Parameters:
 value- the long value coming from upstreamlc- aLongConsumeraccepting the mapped values
 
 -