Lightweight static queue implementation.
wio install wlib-queueAnd in code
wlp::queue<int, 32> intQueue;
intQueue.enqueue(25);
int front = intQueue.peek();
intQueue.dequeue();Calling peek on an empty queue will return
an erroneous value.
| Name | Name | Last commit date | ||
|---|---|---|---|---|