skip method

TreapOfString skip(
  1. int count
)
override

Returns a new treap skipping the first n items of the sorted sequence.

Returns an empty treap if n >= size. treap.

Implementation

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