예제 #1
0
 public void Bound(TKey key, out AVLNode <TKey, TValue>?lower, out AVLNode <TKey, TValue>?upper)
 {
     AVLNode <TKey, TValue> .Bound(_root, key, _comparer, out lower, out upper);
 }
예제 #2
0
 public void Bound(TKey key, out AVLNode lower, out AVLNode upper)
 {
     AVLNode.Bound(_root, key, _comparison, out lower, out upper);
 }