DequeNET 1.0.1

dotnet add package DequeNET --version 1.0.1
NuGet\Install-Package DequeNET -Version 1.0.1
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.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add DequeNET --version 1.0.1
#r "nuget: DequeNET, 1.0.1"
#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 DequeNET as a Cake Addin
#addin nuget:?package=DequeNET&version=1.0.1

// Install DequeNET as a Cake Tool
#tool nuget:?package=DequeNET&version=1.0.1

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.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.1 214 3/31/2014
1.0.0 73 1/24/2014

- Performance improvements