public AVLNode GetNearestLeft(TKey key)
 {
     return(AVLNode.GetNearestLeft(_root, key, _comparison));
 }