flatten property

Iterable<E> flatten

Flattens each iterable element of this Iterable into zero or more elements in iteration order.

since 0.0.1

Implementation

Iterable<E> get flatten {
  return expand(o.identity);
}