public void Bound(TKey key, out AVLNode lower, out AVLNode upper)
 {
     AVLNode.Bound(_root, key, _comparison, out lower, out upper);
 }