3 references to FindRange
System.Collections (3)
System\Collections\Generic\SortedSet.cs (1)
743internal Node? FindRange(T? from, T? to) => FindRange(from, to, lowerBoundActive: true, upperBoundActive: true);
System\Collections\Generic\SortedSet.TreeSubSet.cs (2)
46root = _underlying.FindRange(_min, _max, _lBoundActive, _uBoundActive); // root is first element within range 318root = _underlying.FindRange(_min, _max, _lBoundActive, _uBoundActive);