skip method

TreapOfInt skip(
  1. int count
)

Returns a new treap skipping the first count items.

Implementation

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