append method

ImplicitTreapOfDouble append(
  1. ImplicitTreapOfDouble other
)
override

Appends other to the end of this treap.

Implementation

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