skipE method

Enumerable<T> skipE (int count)

Skips the first count elements in the enumerable.

During iteration, the first count number of elements are ignored. Once that number of elements has elapsed, iteration will continue as normal.

If count is greater than the number of elements in the enumerable, the result is an empty enumerable.

Implementation

Enumerable<T> skipE(int count) {
  assert(count >= 0);

  if (count == 0) return this;

  return SkipEnumerable<T>(this, count);
}