withStart method

Iterable<E> withStart(
  1. E start
)

This iterable with start at the start.

Implementation

Iterable<E> withStart(E start) sync* {
  yield start;
  for (final e in this) {
    yield e;
  }
}