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