2 writes to uBoundActive
System (2)
compmod\system\collections\generic\sortedset.cs (2)
1751uBoundActive = upperBoundActive; 2033uBoundActive = siInfo.GetBoolean(uBoundActiveName);
6 references to uBoundActive
System (6)
compmod\system\collections\generic\sortedset.cs (6)
1752root = underlying.FindRange(min, max, lBoundActive, uBoundActive); // root is first element within range 1841comp = (uBoundActive ? Comparer.Compare(max, item) : 1); 1911if (current.Right != null && (!uBoundActive || Comparer.Compare(max, current.Item) > 0)) { 1955this.root = underlying.FindRange(min, max, lBoundActive, uBoundActive); 1973if (uBoundActive && Comparer.Compare(max, upperValue) < 0) { 2009info.AddValue(uBoundActiveName, uBoundActive);