concatE method
Concatenates this enumerable and another collection.
Appends the values of a given Iterable
to the end of this enumerable,
resulting in an enumerable that is the concatenation of both.
Implementation
Enumerable<T> concatE(Iterable<T> other) {
assert(other != null);
return ConcatEnumerable<T>(this, other);
}