Sign in Sign up
nuget

DequeNet

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.

nuget View on Nuget

Activity

Latest release
9y ago
Total releases
3
Cadence
~1.4 years
Last 12 months
0

Details

First release
Jan 24, 2014
Releases
Version Released
1.0.2 patch
1.0.1 patch
1.0.0 initial