ListPool 2.3.1
See the version list below for details.
dotnet add package ListPool --version 2.3.1
NuGet\Install-Package ListPool -Version 2.3.1
<PackageReference Include="ListPool" Version="2.3.1" />
paket add ListPool --version 2.3.1
#r "nuget: ListPool, 2.3.1"
// Install ListPool as a Cake Addin #addin nuget:?package=ListPool&version=2.3.1 // Install ListPool as a Cake Tool #tool nuget:?package=ListPool&version=2.3.1
ListPool and ValueListPool are optimized allocation free implementations of IList using ArrayPool.
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 | netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.1 is compatible. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | 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.1
- No dependencies.
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:
* We added support for ReadOnlySpan and Span in ListPool from constructor and extension methods
* Optimize creation of ListPool from Array
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.