skip method

view source

Iterable<List<T>> skip (int count) inherited

Implementation

Iterable<E> skip(int count) {
  return SkipIterable<E>(this, count);
}