union method

TreapSetOfDouble union(
  1. TreapSetOfDouble other
)
override

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

Implementation

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