2 implementations of Sort
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Collections\Generic\ArraySortHelper.cs (2)
615public void Sort(Span<TKey> keys, Span<TValue> values, IComparer<TKey>? comparer) 832public void Sort(Span<TKey> keys, Span<TValue> values, IComparer<TKey>? comparer)
3 references to Sort
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\Array.cs (1)
2186ArraySortHelper<TKey, TValue>.Default.Sort(spanKeys, spanItems, comparer);
src\libraries\System.Private.CoreLib\src\System\MemoryExtensions.cs (2)
4382ArraySortHelper<TKey, TValue>.Default.Sort(keys, items, comparer); // value-type comparer will be boxed 4408ArraySortHelper<TKey, TValue>.Default.Sort(keys, items, new ComparisonComparer<TKey>(comparison));