10 references to Max
System (10)
compmod\system\collections\generic\sortedset.cs (10)
198
T max = this.
Max
;
1146
T max =
Max
;
1215
if (!(comparer.Compare(asSorted.
Max
, this.Min) < 0 || comparer.Compare(asSorted.Min, this.
Max
) > 0)) {
1217
T max = this.
Max
;
1341
SortedSet<T> prunedOther = asSorted.GetViewBetween(this.Min, this.
Max
);
1416
SortedSet<T> pruned = GetViewBetween(asSorted.Min, asSorted.
Max
);
1457
SortedSet<T> pruned = GetViewBetween(asSorted.Min, asSorted.
Max
);
1534
if (asSorted != null && AreComparersEqual(this, asSorted) && (comparer.Compare(Min, asSorted.
Max
) > 0 || comparer.Compare(
Max
, asSorted.Min) < 0)) {