Appearance
extension IListNestedOps<A> on IList<IList<A>>
IList<A> flatten()
Combines all nested lists into one list using concatenation.
Available on IList<A>, provided by the IListNestedOps<A> extension
IList<A> flatten() => foldLeft(nil<A>(), (z, a) => z.concat(a));