ILazyListNestedOps<A>
Flattening operations for nested ILazyList values.
Methods
flatten() extension
ILazyList<A>flatten()
Combines all nested lazy lists into one using concatenation.
Available on ILazyList<A>, provided by the ILazyListNestedOps<A> extension
Implementation
dart
ILazyList<A> flatten() => flatMap(identity);