1 write to _min
System.Collections (1)
System\Collections\Generic\SortedSet.TreeSubSet.cs (1)
42_min = Min;
14 references to _min
System.Collections (14)
System\Collections\Generic\SortedSet.TreeSubSet.cs (14)
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)); 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)) 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); 344if (_lBoundActive && Comparer.Compare(_min, lowerValue) > 0) 359Debug.Assert(versionUpToDate() && root == _underlying.FindRange(_min, _max));