skip method

  1. @override
RIterator<T> skip(
  1. int count
)
override

Consumes and skips the first count elements.

Implementation

@override
RIterator<T> skip(int count) => RIterator.fromIterable(super.skip(count));