union method

TreapOfInt union(
  1. TreapOfInt other
)

Returns the union of this treap and other.

Implementation

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