DequeNET 1.0.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package DequeNET --version 1.0.0
                    
NuGet\Install-Package DequeNET -Version 1.0.0
                    
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="DequeNET" Version="1.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="DequeNET" Version="1.0.0" />
                    
Directory.Packages.props
<PackageReference Include="DequeNET" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add DequeNET --version 1.0.0
                    
#r "nuget: DequeNET, 1.0.0"
                    
#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.
#:package DequeNET@1.0.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=DequeNET&version=1.0.0
                    
Install as a Cake Addin
#tool nuget:?package=DequeNET&version=1.0.0
                    
Install as a Cake Tool

DequeNET (pronounced Deck Net) provides a concurrent lock-free deque C# implementation. A deque, or double-ended queue, is a data structure that allows insertion and removal of items on both ends. ConcurrentDeque<T> supports 6 operations in constant time O(1): PushRight, PopRight, PeekRight, PushLeft, PopLeft and PeekLeft.

The library also offers a simpler Deque<T> (not thread safe), implemented as a ring buffer. This implementation allows Pop and Peek operations to run in O(1) time and Push operations in amortized O(1) time.

There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on DequeNET:

Package Downloads
Yautbox.InMemory

In-memory Yautbox provider using a bounded in-process queue. Ideal for tests and local development where durability is not required.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.2 912,844 10/31/2016
1.0.1 7,094 3/31/2014
1.0.0 2,930 1/24/2014