1 write to _max
System.Collections (1)
System\Collections\Generic\SortedSet.TreeSubSet.cs (1)
43_max = Max;
12 references to _max
System.Collections (12)
System\Collections\Generic\SortedSet.TreeSubSet.cs (12)
46root = _underlying.FindRange(_min, _max, _lBoundActive, _uBoundActive); // root is first element within range 62Debug.Assert(this.versionUpToDate() && root == _underlying.FindRange(_min, _max)); 72Debug.Assert(versionUpToDate() && root == _underlying.FindRange(_min, _max)); 87Debug.Assert(versionUpToDate() && root == _underlying.FindRange(_min, _max)); 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)) 285Debug.Assert(this.versionUpToDate() && root == _underlying.FindRange(_min, _max)); 302Debug.Assert(this.versionUpToDate() && root == _underlying.FindRange(_min, _max)); 318root = _underlying.FindRange(_min, _max, _lBoundActive, _uBoundActive); 348if (_uBoundActive && Comparer.Compare(_max, upperValue) < 0) 359Debug.Assert(versionUpToDate() && root == _underlying.FindRange(_min, _max));