AVLTree<A> constructor

AVLTree<A>(
  1. Order<A> _order,
  2. _AVLNode<A> _root
)

Implementation

AVLTree(this._order, this._root);