append method

ImplicitTreapOfInt append(
  1. ImplicitTreapOfInt other
)
override

Appends other to the end of this treap.

Implementation

ImplicitTreapOfInt append(ImplicitTreapOfInt other) =>
    ImplicitTreapOfInt._(base.append(other.base));