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)
46
root = _underlying.FindRange(_min, _max, _lBoundActive,
_uBoundActive
); // root is first element within range
120
comp =
_uBoundActive
? Comparer.Compare(_max, item) : 1;
165
int comp =
_uBoundActive
? Comparer.Compare(_max, current.Item) : 1;
268
if (current.Right != null && (!
_uBoundActive
|| Comparer.Compare(_max, current.Item) > 0))
318
root = _underlying.FindRange(_min, _max, _lBoundActive,
_uBoundActive
);
348
if (
_uBoundActive
&& Comparer.Compare(_max, upperValue) < 0)