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