union method

TreapOfString union(
  1. TreapOfString other
)
override

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

Implementation

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