2 writes to lBoundActive
System (2)
compmod\system\collections\generic\sortedset.cs (2)
1750lBoundActive = lowerBoundActive; 2032lBoundActive = siInfo.GetBoolean(lBoundActiveName);
8 references to lBoundActive
System (8)
compmod\system\collections\generic\sortedset.cs (8)
1752root = underlying.FindRange(min, max, lBoundActive, uBoundActive); // root is first element within range 1837int comp = (lBoundActive ? Comparer.Compare(min, item) : -1); 1863} else if (lBoundActive && Comparer.Compare(min, current.Item) > 0) { 1881} else if (lBoundActive && Comparer.Compare(min, node.Item) > 0) { 1908if (current.Left != null && (!lBoundActive || Comparer.Compare(min, current.Item) < 0)) { 1955this.root = underlying.FindRange(min, max, lBoundActive, uBoundActive); 1969if (lBoundActive && Comparer.Compare(min, lowerValue) > 0) { 2008info.AddValue(lBoundActiveName, lBoundActive);