ListPool 2.3.3
See the version list below for details.
dotnet add package ListPool --version 2.3.3
NuGet\Install-Package ListPool -Version 2.3.3
<PackageReference Include="ListPool" Version="2.3.3" />
paket add ListPool --version 2.3.3
#r "nuget: ListPool, 2.3.3"
// Install ListPool as a Cake Addin #addin nuget:?package=ListPool&version=2.3.3 // Install ListPool as a Cake Tool #tool nuget:?package=ListPool&version=2.3.3
ListPool and ValueListPool are optimized allocation free implementations of IList using ArrayPool.
Changelog:
* Performance enhancement in the method AddRange(T[] items) for ListPool and ValueListPool
* ValueListPool now can be created with parameterless constructor
ListPool is the general use of the implementation, we recommend to use ListPool for most of the cases. ValueListPool is the zero heap allocations implementation, it is optimal working along stackalloc initial buffer for small lists. Note, because it is a struct it is passed by value, not by reference.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 is compatible. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- System.Memory (>= 4.5.3)
-
.NETStandard 2.1
- System.Memory (>= 4.5.3)
NuGet packages (4)
Showing the top 4 NuGet packages that depend on ListPool:
Package | Downloads |
---|---|
MorseSharp
A .NET library to encode/decode morse up to 9+ lanuages and generating dash and dots in wav audio with light blinking support. |
|
ListPool.Utf8Json
This a fork from Utf8Json where we added support for Span and ListPool |
|
ListPool.Serializers.Utf8Json.Formatters
High-performance formatters for ListPool. |
|
ListPool.Serializers.SystemTextJson.Converters
High-performance converters for ListPool. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
2.3.6 | 14,696 | 6/7/2020 |
2.3.5 | 602 | 3/1/2020 |
2.3.5-preview1 | 440 | 2/19/2020 |
2.3.4 | 723 | 2/15/2020 |
2.3.3 | 467 | 2/12/2020 |
2.3.3-beta | 347 | 2/12/2020 |
2.3.2 | 503 | 2/10/2020 |
2.3.2-beta | 349 | 2/10/2020 |
2.3.1 | 517 | 2/7/2020 |
2.3.0 | 509 | 2/6/2020 |
2.2.1 | 528 | 2/4/2020 |
2.2.0 | 504 | 1/18/2020 |
2.1.0 | 530 | 1/3/2020 |
2.0.0 | 624 | 12/31/2019 |
1.0.3-alpha | 378 | 12/30/2019 |
1.0.2 | 473 | 12/27/2019 |
1.0.1 | 544 | 12/26/2019 |
1.0.0 | 467 | 12/21/2019 |
0.0.8-alpha | 342 | 12/25/2019 |
0.0.7-alpha | 355 | 12/23/2019 |
Changelog:
* Performance enhancement in the method AddRange(T[] items) for ListPool and ValueListPool
* ValueListPool now can be created with parameterless constructor