- Enclosing interface:
- DoubleStream
- 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 
double-valued argument
 and a DoubleConsumer, and returns no result. This functional interface is
 used by DoubleStream.mapMulti
 to replace a double value with zero or more double values.
 This is a functional interface
 whose functional method is accept(double, DoubleConsumer).
- Since:
- 16
- See Also:
- 
Method SummaryModifier and TypeMethodDescriptionvoidaccept(double value, DoubleConsumer dc) Replaces the givenvaluewith zero or more values by feeding the mapped values to thedcconsumer.
- 
Method Details- 
acceptReplaces the givenvaluewith zero or more values by feeding the mapped values to thedcconsumer.- Parameters:
- value- the double value coming from upstream
- dc- a- DoubleConsumeraccepting the mapped values
 
 
-