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)
23
private
TreeSet
<KeyValuePair<TKey, TValue>> _set;
52
TreeSet
<KeyValuePair<TKey, TValue>>.Node node = _set.FindNode(keyValuePair);
66
TreeSet
<KeyValuePair<TKey, TValue>>.Node node = _set.FindNode(keyValuePair);
90
TreeSet
<KeyValuePair<TKey, TValue>>.Node node = _set.FindNode(new KeyValuePair<TKey, TValue>(key, default(TValue)));
102
TreeSet
<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) {
231
TreeSet
<KeyValuePair<TKey, TValue>>.Node node = _set.FindNode(new KeyValuePair<TKey, TValue>(key, default(TValue)));
357
private
TreeSet
<KeyValuePair<TKey, TValue>>.Enumerator treeEnum;
483
dictionary._set.InOrderTreeWalk( delegate(
TreeSet
<KeyValuePair<TKey, TValue>>.Node node){ array[index++] = node.Item.Key; return true;});
518
dictionary._set.InOrderTreeWalk( delegate(
TreeSet
<KeyValuePair<TKey, TValue>>.Node node){ objects[index++] = node.Item.Key; return true;});
638
dictionary._set.InOrderTreeWalk( delegate(
TreeSet
<KeyValuePair<TKey, TValue>>.Node node){ array[index++] = node.Item.Value; return true;});
673
dictionary._set.InOrderTreeWalk( delegate(
TreeSet
<KeyValuePair<TKey, TValue>>.Node node){ objects[index++] = node.Item.Value; return true;});