insert method

AVLTree<A> insert(
  1. A a
)

Implementation

AVLTree<A> insert(A a) => new AVLTree(_order, _root.insert(_order, a));