1.0.0 • Published 7 years ago
wlib-queue v1.0.0
wlib-queue
Lightweight static queue implementation.
Usage
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.
1.0.0
7 years ago