skip method

TreapSetOfInt skip(
  1. int count
)
override

Returns a new set skipping the first n elements in sorted order.

Implementation

TreapSetOfInt skip(int count) => TreapSetOfInt._(base.skip(count));