NestedIterablesExtensions<T> extension

on

Methods

asyncFlatMap<X>(Future<X> f(T)) Future<Iterable<X>>
Returns a new list after flattening the original Iterable of Iterables and then mapping each element asynchronously.
flatMap<X>(X f(T)) Iterable<X>
Returns a new list after flattening the original Iterable of Iterables and then mapping each element.
flatten() List<T>
Returns a new list after flattening the original Iterable of Iterables.