public IEnumerator <T> GetEnumerator()
 {
     return(binarySearchTree.GetEnumerator());
 }
Beispiel #2
0
 internal SortedDictionaryEnumerator(RedBlackTree <SortedDictionaryNode <K, V> > bst)
 {
     this.bst        = bst;
     this.enumerator = bst.GetEnumerator();
 }