2 writes to underlying
System (2)
compmod\system\collections\generic\sortedset.cs (2)
1747
underlying
= Underlying;
2034
underlying
= new SortedSet<T>();
14 references to underlying
System (14)
compmod\system\collections\generic\sortedset.cs (14)
1752
root =
underlying
.FindRange(min, max, lBoundActive, uBoundActive); // root is first element within range
1784
bool ret =
underlying
.AddIfNotPresent(item);
1808
bool ret =
underlying
.Remove(item);
1826
underlying
.Remove(toRemove[toRemove.Count - 1]);
1831
version =
underlying
.version;
1953
Debug.Assert(
underlying
!= null, "Underlying set no longer exists");
1954
if (this.version !=
underlying
.version) {
1955
this.root =
underlying
.FindRange(min, max, lBoundActive, uBoundActive);
1956
this.version =
underlying
.version;
1977
TreeSubSet ret = (TreeSubSet)
underlying
.GetViewBetween(lowerValue, upperValue);
2044
underlying
.Add(items[i]);
2047
underlying
.version = siInfo.GetInt32(VersionName);
2048
count =
underlying
.count;
2049
version =
underlying
.version - 1;