Skip to content

Commit 036b5cc

Browse files
committed
Update readme.md
1 parent 5e365d5 commit 036b5cc

File tree

1 file changed

+11
-6
lines changed

1 file changed

+11
-6
lines changed

readme.md

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ The package targets `netstandard2.0` and is designed to support the following ru
1313
* `uap10`
1414

1515

16-
**API count: 656**<!-- singleLineInclude: apiCount. path: /apiCount.include.md -->
16+
**API count: 661**<!-- singleLineInclude: apiCount. path: /apiCount.include.md -->
1717

1818

1919
**See [Milestones](../../milestones?state=closed) for release notes.**
@@ -1109,11 +1109,16 @@ The class `Polyfill` includes the following extension methods:
11091109
* `int CommonPrefixLength<T>(ReadOnlySpan<T>, IEqualityComparer<T>?)` [reference](https://learn.microsoft.com/en-us/dotnet/api/system.memoryextensions.commonprefixlength?view=net-10.0#system-memoryextensions-commonprefixlength-1(system-span((-0))-system-readonlyspan((-0))-system-collections-generic-iequalitycomparer((-0))))
11101110
* `int CommonPrefixLength<T>(ReadOnlySpan<T>)` [reference](https://learn.microsoft.com/en-us/dotnet/api/system.memoryextensions.commonprefixlength?view=net-10.0#system-memoryextensions-commonprefixlength-1(system-span((-0))-system-readonlyspan((-0))))
11111111
* `bool Contains<T>(T) where T : IEquatable<T>` [reference](https://learn.microsoft.com/en-us/dotnet/api/system.memoryextensions.contains?view=net-10.0#system-memoryextensions-contains-1(system-span((-0))-0))
1112-
* `void Sort<T>(Span<T>) where T : IComparable<T>` [reference](https://learn.microsoft.com/en-us/dotnet/api/system.memoryextensions.sort?view=net-10.0#system-memoryextensions-sort-1(system-span((-0))))
1113-
* `void Sort<T, TComparer>(Span<T>, TComparer) where TComparer : IComparer<T>` [reference](https://learn.microsoft.com/en-us/dotnet/api/system.memoryextensions.sort?view=net-10.0#system-memoryextensions-sort-2(system-span((-0))-1))
1114-
* `void Sort<TKey, TValue, TComparer>(Span<TKey>, Span<TValue>, TComparer)` [reference](https://learn.microsoft.com/en-us/dotnet/api/system.memoryextensions.sort?view=net-10.0#system-memoryextensions-sort-3(system-span((-0))-system-span((-1))-2))
1115-
* `void Sort<TKey, TValue>(Span<TKey>, Span<TValue>)` [reference](https://learn.microsoft.com/en-us/dotnet/api/system.memoryextensions.sort?view=net-8.0#system-memoryextensions-sort-2(system-span((-0))-system-span((-1))))
1116-
* `void Sort<TKey, TValue>(Span<TKey>, Span<TValue>, Comparison<TKey>)` [reference](https://learn.microsoft.com/en-us/dotnet/api/system.memoryextensions.sort?view=net-10.0#system-memoryextensions-sort-2(system-span((-0))-system-span((-1))-system-comparison((-0))))
1112+
* `void Sort<T>(Comparison<T>)`
1113+
* `void Sort<T>() where T : IComparable<T>`
1114+
1115+
1116+
#### Span<TKey>
1117+
1118+
* `void Sort<TKey, TValue, TComparer>(Span<TValue>, TComparer) where TComparer : IComparer<TKey>`
1119+
* `void Sort<TKey, TValue>(Span<TValue>, Comparison<TKey>)`
1120+
* `void Sort<TKey, TValue>(Span<TValue>)`
1121+
11171122

11181123
#### Stack<T>
11191124

0 commit comments

Comments
 (0)