add method

Iterable<T> add(
  1. T element
)

Implementation

Iterable<T> add(T element) sync* {
  yield* this;
  yield element;
}