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)
46
root = _underlying.FindRange(_min, _max,
_lBoundActive
, _uBoundActive); // root is first element within range
114
int comp =
_lBoundActive
? Comparer.Compare(_min, item) : -1;
135
int comp =
_lBoundActive
? Comparer.Compare(_min, current.Item) : -1;
205
else if (
_lBoundActive
&& Comparer.Compare(_min, current.Item) > 0)
231
else if (
_lBoundActive
&& Comparer.Compare(_min, node.Item) > 0)
264
if (current.Left != null && (!
_lBoundActive
|| Comparer.Compare(_min, current.Item) < 0))
318
root = _underlying.FindRange(_min, _max,
_lBoundActive
, _uBoundActive);
344
if (
_lBoundActive
&& Comparer.Compare(_min, lowerValue) > 0)