2 instantiations of TreeSet
System (2)
compmod\system\collections\generic\sorteddictionary.cs (2)
36_set = new TreeSet<KeyValuePair<TKey, TValue>>(new KeyValuePairComparer(comparer)); 44_set = new TreeSet<KeyValuePair<TKey, TValue>>(new KeyValuePairComparer(comparer));
13 references to TreeSet
System (13)
compmod\system\collections\generic\sorteddictionary.cs (13)
23private TreeSet<KeyValuePair<TKey, TValue>> _set; 52TreeSet<KeyValuePair<TKey, TValue>>.Node node = _set.FindNode(keyValuePair); 66TreeSet<KeyValuePair<TKey, TValue>>.Node node = _set.FindNode(keyValuePair); 90TreeSet<KeyValuePair<TKey, TValue>>.Node node = _set.FindNode(new KeyValuePair<TKey, TValue>(key, default(TValue))); 102TreeSet<KeyValuePair<TKey, TValue>>.Node node = _set.FindNode(new KeyValuePair<TKey, TValue>(key, default(TValue))); 184_set.InOrderTreeWalk( delegate(TreeSet<KeyValuePair<TKey, TValue>>.Node node) { 195_set.InOrderTreeWalk( delegate(TreeSet<KeyValuePair<TKey, TValue>>.Node node) { 231TreeSet<KeyValuePair<TKey, TValue>>.Node node = _set.FindNode(new KeyValuePair<TKey, TValue>(key, default(TValue))); 357private TreeSet<KeyValuePair<TKey, TValue>>.Enumerator treeEnum; 483dictionary._set.InOrderTreeWalk( delegate(TreeSet<KeyValuePair<TKey, TValue>>.Node node){ array[index++] = node.Item.Key; return true;}); 518dictionary._set.InOrderTreeWalk( delegate(TreeSet<KeyValuePair<TKey, TValue>>.Node node){ objects[index++] = node.Item.Key; return true;}); 638dictionary._set.InOrderTreeWalk( delegate(TreeSet<KeyValuePair<TKey, TValue>>.Node node){ array[index++] = node.Item.Value; return true;}); 673dictionary._set.InOrderTreeWalk( delegate(TreeSet<KeyValuePair<TKey, TValue>>.Node node){ objects[index++] = node.Item.Value; return true;});