union method

TreapOfDouble union(
  1. TreapOfDouble other
)
override

Returns a new treap containing all items from this treap and other.

Implementation

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