remove method

AVLTree<A> remove(
  1. A a
)

Implementation

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