deque
deque copied to clipboard
Fast ring-buffer deque (double-ended queue)
Hey Andrew, Can you tell me what I'm doing wrong? From time to time the `PopFront` method returns `nil`, and some messages get lost? Thank you! ``` package somepackage import...
What's the advantage, if any, of using this in place of standard slice? Taken from [Marwan Burelle's example on SO](https://stackoverflow.com/questions/2818852/is-there-a-queue-implementation): ``` queue := make([]int, 0) // Push to the queue...
Deque is a good utility, clear and simple to use, and fast. Is it ready for a release version? It's overdue for one, IMO :-) Meanwhile, here are some ideas...