Skip to content

Commit 9c90f66

Browse files
committed
Updated package description with new types
1 parent cd21086 commit 9c90f66

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Microsoft.Toolkit.HighPerformance/Microsoft.Toolkit.HighPerformance.csproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,13 @@
88
<Title>Windows Community Toolkit High Performance .NET Standard</Title>
99
<Description>
1010
This package includes high performance .NET Standard helpers such as:
11+
- Memory2D&lt;T&gt; and Span2D&lt;T&gt;: two types providing fast and allocation-free abstraction over 2D memory areas.
1112
- ArrayPoolBufferWriter&lt;T&gt;: an IBufferWriter&lt;T&gt; implementation using pooled arrays, which also supports IMemoryOwner&lt;T&gt;.
1213
- MemoryBufferWriter&lt;T&gt;: an IBufferWriter&lt;T&gt;: implementation that can wrap external Memory&lt;T&gt;: instances.
1314
- MemoryOwner&lt;T&gt;: an IMemoryOwner&lt;T&gt; implementation with an embedded length and a fast Span&lt;T&gt; accessor.
1415
- SpanOwner&lt;T&gt;: a stack-only type with the ability to rent a buffer of a specified length and getting a Span&lt;T&gt; from it.
1516
- StringPool: a configurable pool for string instances that be used to minimize allocations when creating multiple strings from char buffers.
16-
- String, array, Span&lt;T&gt;, Memory&lt;T&gt; extensions and more, all focused on high performance.
17+
- String, array, Memory&lt;T&gt;, Span&lt;T&gt; extensions and more, all focused on high performance.
1718
- HashCode&lt;T&gt;: a SIMD-enabled extension of HashCode to quickly process sequences of values.
1819
- BitHelper: a class with helper methods to perform bit operations on numeric types.
1920
- ParallelHelper: helpers to work with parallel code in a highly optimized manner.

0 commit comments

Comments
 (0)