skip method

ImplicitTreapOfDouble skip(
  1. int count
)
override

Skips the first count items and returns a new treap with the remaining items.

Implementation

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