compmod\system\collections\generic\sortedset.cs (6)
173root = ConstructRootFromSortedArray(els.ToArray(), 0, els.Count - 1, null);
1040root = SortedSet<T>.ConstructRootFromSortedArray(merged, 0, c - 1, null);
1102root.Left = ConstructRootFromSortedArray(arr, startIndex, midpt - 1, redNode);
1104root.Right = ConstructRootFromSortedArray(arr, midpt + 2, endIndex, new Node(arr[midpt + 1], true));
1106root.Right = ConstructRootFromSortedArray(arr, midpt + 1, endIndex, null);
1167root = SortedSet<T>.ConstructRootFromSortedArray(merged, 0, c - 1, null);