union method

TreapSetOfString union(
  1. TreapSetOfString other
)
override

Returns a new set which is the union of this set and other.

Implementation

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