7 references to SegmentedArraySortHelper
Microsoft.CodeAnalysis (7)
src\Dependencies\Collections\Internal\ArraySortHelper.cs (2)
326SegmentedArraySortHelper<T>.IntrospectiveSort(keys, comparer.Compare); 351return SegmentedArraySortHelper<T>.InternalBinarySearch(array, index, length, value, comparer);
src\Dependencies\Collections\SegmentedArray.cs (4)
196return SegmentedArraySortHelper<T>.BinarySearch(array, index, length, value, comparer); 367SegmentedArraySortHelper<T>.Sort(segment, (IComparer<T>?)null); 393SegmentedArraySortHelper<T>.Sort(segment, comparer); 407SegmentedArraySortHelper<T>.Sort(segment, comparison);
src\Dependencies\Collections\SegmentedList`1.cs (1)
1202SegmentedArraySortHelper<T>.Sort(segment, comparison);