operator + method

Iterable<E> operator +(
  1. Iterable<E> other
)

Implementation

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