2 writes to max
System (2)
compmod\system\collections\generic\sortedset.cs (2)
1749
max
= Max;
2030
max
= (T)siInfo.GetValue(maxName, typeof(T));
6 references to max
System (6)
compmod\system\collections\generic\sortedset.cs (6)
1752
root = underlying.FindRange(min,
max
, lBoundActive, uBoundActive); // root is first element within range
1841
comp = (uBoundActive ? Comparer.Compare(
max
, item) : 1);
1911
if (current.Right != null && (!uBoundActive || Comparer.Compare(
max
, current.Item) > 0)) {
1955
this.root = underlying.FindRange(min,
max
, lBoundActive, uBoundActive);
1973
if (uBoundActive && Comparer.Compare(
max
, upperValue) < 0) {
2006
info.AddValue(maxName,
max
, typeof(T));