circular-queue
circular-queue copied to clipboard
Add .pop() or .drain()
Adding a way to remove elements without filling up the buffer to the max is nice.
The problem is that these methods can create gaps in the vector, and suddenly you need much more complex logic and unsafe to deal with it. Not a big fan tbh
Yea i was trying to implement it in a pullrequest