Returns a new lazy Iterable containing all elements of this collection and other.
other
Iterable<E> append(Iterable<E> other) sync* { yield* this; yield* other; }