Returns an iterable that skips the first n elements.
n
This is a non-mutating operation that returns an iterable.
@override Iterable<E> skip(int n) => value.skip(n);