Ejemplo n.º 1
0
 public AVLNode <TKey, TValue>?GetNearestRight(TKey key)
 {
     return(AVLNode <TKey, TValue> .GetNearestRight(_root, key, _comparer));
 }
Ejemplo n.º 2
0
 public AVLNode GetNearestRight(TKey key)
 {
     return(AVLNode.GetNearestRight(_root, key, _comparison));
 }