2 writes to min
System (2)
compmod\system\collections\generic\sortedset.cs (2)
1748
min
= Min;
2031
min
= (T)siInfo.GetValue(minName, typeof(T));
8 references to min
System (8)
compmod\system\collections\generic\sortedset.cs (8)
1752
root = underlying.FindRange(
min
, max, lBoundActive, uBoundActive); // root is first element within range
1837
int comp = (lBoundActive ? Comparer.Compare(
min
, item) : -1);
1863
} else if (lBoundActive && Comparer.Compare(
min
, current.Item) > 0) {
1881
} else if (lBoundActive && Comparer.Compare(
min
, node.Item) > 0) {
1908
if (current.Left != null && (!lBoundActive || Comparer.Compare(
min
, current.Item) < 0)) {
1955
this.root = underlying.FindRange(
min
, max, lBoundActive, uBoundActive);
1969
if (lBoundActive && Comparer.Compare(
min
, lowerValue) > 0) {
2007
info.AddValue(minName,
min
, typeof(T));