Skip to content

wloop/wlib-queue

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

wlib-queue

Lightweight static queue implementation.

Usage

wio install wlib-queue

And 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.

About

Lightweight static queue implementation

Resources

Stars

Watchers

Forks

Packages

No packages published