remove method

TreapOfDouble remove(
  1. double item
)
override

Removes an item from this treap.

Returns a new treap without the item. If the item was not present, the original treap is returned.

Implementation

TreapOfDouble remove(double item) => TreapOfDouble._(base.remove(item));