Iterable<E> operator +(Iterable<E> other) sync* { for (final e in this) { yield e; } for (final o in other) { yield o; } }