union method

TreapOfInt union(
  1. TreapOfInt other
)
override

Returns the union of this treap and other.

Implementation

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