append method

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

Returns a new lazy Iterable containing all elements of the given elements collection and then all elements of this collection.

Implementation

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