union method

TreapSetOfInt union(
  1. TreapSetOfInt other
)
override

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

Implementation

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