remove method

ImplicitTreapOfInt remove(
  1. int index
)
override

Removes the item at index.

Implementation

ImplicitTreapOfInt remove(int index) =>
    ImplicitTreapOfInt._(base.remove(index));