skip method

view source

Iterable<E> skip (int n) inherited

Implementation

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