1 override of GetViewBetween
System.Collections (1)
System\Collections\Generic\SortedSet.TreeSubSet.cs (1)
342public override SortedSet<T> GetViewBetween(T? lowerValue, T? upperValue)
4 references to GetViewBetween
System.Collections (4)
System\Collections\Generic\SortedSet.cs (3)
1199SortedSet<T> prunedOther = asSorted.GetViewBetween(Min, Max); 1246SortedSet<T> pruned = GetViewBetween(asSorted.Min, asSorted.Max); 1275SortedSet<T> pruned = GetViewBetween(asSorted.Min, asSorted.Max);
System\Collections\Generic\SortedSet.TreeSubSet.cs (1)
352return (TreeSubSet)_underlying.GetViewBetween(lowerValue, upperValue);