skip method

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

Returns an ISet that provides all but the first count elements.

Implementation

@override
Iterable<T> skip(int count) => _s.skip(count);