append method

Iterable<E> append(
  1. Iterable<E> other
)

Returns a new lazy Iterable containing all elements of this collection and other.

Implementation

Iterable<E> append(Iterable<E> other) sync* {
  yield* this;
  yield* other;
}