1 instantiation of ArraySortHelper
System.Private.CoreLib (1)
System\Collections\Generic\ArraySortHelper.NativeAot.cs (1)
14
private static readonly ArraySortHelper<T> s_defaultArraySortHelper = new
ArraySortHelper
<T>();
11 references to ArraySortHelper
System.Private.CoreLib (11)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Array.cs (4)
1407
return
ArraySortHelper
<T>.Default.BinarySearch(array, index, length, value, comparer);
2516
ArraySortHelper
<T>.Default.Sort(span, null);
2565
ArraySortHelper
<T>.Default.Sort(span, comparer);
2607
ArraySortHelper
<T>.Sort(span, comparison);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Collections\Generic\ArraySortHelper.cs (2)
311
ArraySortHelper
<T>.IntrospectiveSort(keys, comparer.Compare);
337
return
ArraySortHelper
<T>.InternalBinarySearch(array, index, length, value, comparer);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Collections\Generic\List.cs (1)
1131
ArraySortHelper
<T>.Sort(new Span<T>(_items, 0, _size), comparison);
src\runtime\src\libraries\System.Private.CoreLib\src\System\MemoryExtensions.cs (2)
4356
ArraySortHelper
<T>.Default.Sort(span, comparer);
4375
ArraySortHelper
<T>.Sort(span, comparison);
System\Collections\Generic\ArraySortHelper.NativeAot.cs (2)
14
private static readonly
ArraySortHelper
<T> s_defaultArraySortHelper = new ArraySortHelper<T>();
16
public static
ArraySortHelper
<T> Default