insert method
Inserts item at index.
Throws a RangeError if index is out of bounds.
Implementation
ImplicitTreapOfDouble insert(int index, double item) =>
ImplicitTreapOfDouble._(base.insert(index, item));
Inserts item at index.
Throws a RangeError if index is out of bounds.
ImplicitTreapOfDouble insert(int index, double item) =>
ImplicitTreapOfDouble._(base.insert(index, item));