asDoubleStream abstract method
Converts this IntStream
to a DoubleStream
.
Example
final doubleStream = IntStream.range(1, 5).asDoubleStream();
Implementation
DoubleStream asDoubleStream();
Converts this IntStream
to a DoubleStream
.
final doubleStream = IntStream.range(1, 5).asDoubleStream();
DoubleStream asDoubleStream();