drop method

Iterable<T> drop(
  1. int n
)

Return the suffix of this Iterable after the first n elements.

Equivalent to Iterable.skip.

Implementation

Iterable<T> drop(int n) => skip(n);