difference method

TreapOfDouble difference(
  1. TreapOfDouble other
)
override

Returns a new treap containing items from this treap that are not in other.

Implementation

TreapOfDouble difference(TreapOfDouble other) =>
    TreapOfDouble._(base.difference(other.base));