Skip to content

Latest commit

 

History

History
15 lines (13 loc) · 571 Bytes

TODO.md

File metadata and controls

15 lines (13 loc) · 571 Bytes

Misnomer

  • Get rid of annoying ArraySortHelper.cs when method MemoryExtensions.Sort() will become available in System.Memory package newer than 4.5.4. Replace
    ArraySortHelper<T>.Sort(new Span<T>(_items, 0, _size), comparison);
    with
    new Span<T>(_items, 0, _size).Sort(comparison);