skip method

Iterable<E> skip(
  1. int n
)

Implementation

Iterable<E> skip(int n) => toIterable()!.skip(n) as Iterable<E>;