- 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 Summary
Modifier and TypeMethodDescriptionvoid
accept
(double value, DoubleConsumer dc) Replaces the givenvalue
with zero or more values by feeding the mapped values to thedc
consumer.
-
Method Details
-
accept
Replaces the givenvalue
with zero or more values by feeding the mapped values to thedc
consumer.- Parameters:
value
- the double value coming from upstreamdc
- aDoubleConsumer
accepting the mapped values
-