remove method
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));
Removes an item
from this treap.
Returns a new treap without the item
. If the item
was not present,
the original treap is returned.
TreapOfDouble remove(double item) => TreapOfDouble._(base.remove(item));