1 write to _uBoundActive
System.Collections (1)
System\Collections\Generic\SortedSet.TreeSubSet.cs (1)
45_uBoundActive = upperBoundActive;
6 references to _uBoundActive
System.Collections (6)
System\Collections\Generic\SortedSet.TreeSubSet.cs (6)
46root = _underlying.FindRange(_min, _max, _lBoundActive, _uBoundActive); // root is first element within range 120comp = _uBoundActive ? Comparer.Compare(_max, item) : 1; 165int comp = _uBoundActive ? Comparer.Compare(_max, current.Item) : 1; 268if (current.Right != null && (!_uBoundActive || Comparer.Compare(_max, current.Item) > 0)) 318root = _underlying.FindRange(_min, _max, _lBoundActive, _uBoundActive); 348if (_uBoundActive && Comparer.Compare(_max, upperValue) < 0)