1 write to _lBoundActive
System.Collections (1)
System\Collections\Generic\SortedSet.TreeSubSet.cs (1)
44_lBoundActive = lowerBoundActive;
8 references to _lBoundActive
System.Collections (8)
System\Collections\Generic\SortedSet.TreeSubSet.cs (8)
46root = _underlying.FindRange(_min, _max, _lBoundActive, _uBoundActive); // root is first element within range 114int comp = _lBoundActive ? Comparer.Compare(_min, item) : -1; 135int comp = _lBoundActive ? Comparer.Compare(_min, current.Item) : -1; 205else if (_lBoundActive && Comparer.Compare(_min, current.Item) > 0) 231else if (_lBoundActive && Comparer.Compare(_min, node.Item) > 0) 264if (current.Left != null && (!_lBoundActive || Comparer.Compare(_min, current.Item) < 0)) 318root = _underlying.FindRange(_min, _max, _lBoundActive, _uBoundActive); 344if (_lBoundActive && Comparer.Compare(_min, lowerValue) > 0)