skip method
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));
Returns a new treap skipping the first n items of the sorted sequence.
Returns an empty treap if n >= size.
treap.
TreapOfString skip(int count) => TreapOfString._(base.skip(count));