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