compmod\system\collections\generic\sortedset.cs (15)
134Node myCurrent = (theirCurrent != null ? new SortedSet<T>.Node(theirCurrent.Item, theirCurrent.IsRed) : null);
139myCurrent.Left = (theirCurrent.Left != null ? new SortedSet<T>.Node(theirCurrent.Left.Item, theirCurrent.Left.IsRed) : null);
149myRight = new SortedSet<T>.Node(theirRight.Item, theirRight.IsRed);
156myRight.Left = (theirRight.Left != null ? new SortedSet<T>.Node(theirRight.Left.Item, theirRight.Left.IsRed) : null);
359root = new Node(item, false);
406Node node = new Node(item);
1080root = new Node(arr[startIndex], false);
1085root = new Node(arr[startIndex], false);
1086root.Right = new Node(arr[endIndex], false);
1092root = new Node(arr[startIndex + 1], false);
1093root.Left = new Node(arr[startIndex], false);
1094root.Right = new Node(arr[endIndex], false);
1101root = new Node(arr[midpt], false);
1104root.Right = ConstructRootFromSortedArray(arr, midpt + 2, endIndex, new Node(arr[midpt + 1], true));
2162static SortedSet<T>.Node dummyNode = new SortedSet<T>.Node(default(T));