exceptElement method
Returns a new lazy Iterable containing all elements of this collection
except the given element.
Implementation
Iterable<E> exceptElement(E element) sync* {
  for (final current in this) {
    if (element != current) yield current;
  }
}