skip method

TreapOfInt skip(
  1. int count
)
override

Returns a new treap skipping the first count items.

Implementation

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