ListPool 2.3.6

dotnet add package ListPool --version 2.3.6
NuGet\Install-Package ListPool -Version 2.3.6
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="ListPool" Version="2.3.6" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add ListPool --version 2.3.6
#r "nuget: ListPool, 2.3.6"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install ListPool as a Cake Addin
#addin nuget:?package=ListPool&version=2.3.6

// Install ListPool as a Cake Tool
#tool nuget:?package=ListPool&version=2.3.6

ListPool and ValueListPool are optimized allocation free implementations of IList using ArrayPool.

     Changelog:
     * Improve dispose performance

     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 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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 8,097 6/7/2020
2.3.5 580 3/1/2020
2.3.5-preview1 422 2/19/2020
2.3.4 699 2/15/2020
2.3.3 444 2/12/2020
2.3.3-beta 326 2/12/2020
2.3.2 481 2/10/2020
2.3.2-beta 327 2/10/2020
2.3.1 494 2/7/2020
2.3.0 490 2/6/2020
2.2.1 502 2/4/2020
2.2.0 476 1/18/2020
2.1.0 505 1/3/2020
2.0.0 599 12/31/2019
1.0.3-alpha 350 12/30/2019
1.0.2 450 12/27/2019
1.0.1 517 12/26/2019
1.0.0 446 12/21/2019
0.0.8-alpha 317 12/25/2019
0.0.7-alpha 332 12/23/2019

Changelog:
     * Improve AddRange for Array
     * Add method GetRawBuffer
     * Add method SetOffsetManually