11 references to Min
System (10)
compmod\system\collections\generic\sortedset.cs (10)
197
T min = this.
Min
;
1147
T min =
Min
;
1215
if (!(comparer.Compare(asSorted.Max, this.
Min
) < 0 || comparer.Compare(asSorted.
Min
, this.Max) > 0)) {
1216
T min = this.
Min
;
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)) {
System.Data.Entity (1)
System\Data\Mapping\Update\Internal\Graph.cs (1)
166
TVertex from = rootsPriorityQueue.
Min
;