length property
override
Returns the number of elements in this.
Counting all elements may involve iterating through all elements and can therefore be slow. Some iterables have a more efficient way to find the number of elements.
Implementation
int get length => _iterables.fold(0, (length, i) => length + i.length);