1 instantiation of TreeSubSet
System.Collections (1)
System\Collections\Generic\SortedSet.cs (1)
1517return new TreeSubSet(this, lowerValue, upperValue, true, true);
7 references to TreeSubSet
System.Collections (7)
System\Collections\Generic\SortedSet.cs (6)
92if (sortedSet != null && !(sortedSet is TreeSubSet) && HasEqualComparer(sortedSet)) 721/// completely different from <see cref="TreeSubSet"/>'s, and that the two should not be mixed. 851TreeSubSet? treeSubset = this as TreeSubSet; 1000TreeSubSet? treeSubset = this as TreeSubSet;
System\Collections\Generic\SortedSet.TreeSubSet.cs (1)
352return (TreeSubSet)_underlying.GetViewBetween(lowerValue, upperValue);