append method

ImplicitTreapOfString append(
  1. ImplicitTreapOfString other
)
override

Appends other to the end of this treap.

Implementation

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