arduino-audio-tools
|
FIFO Queue which is based on a List. More...
#include <Queue.h>
Public Member Functions | |
bool | clear () |
bool | dequeue (T &data) |
bool | empty () |
bool | enqueue (T &data) |
bool | peek (T &data) |
void | setAllocator (Allocator &allocator) |
size_t | size () |
Protected Attributes | |
List< T > | l |
FIFO Queue which is based on a List.
T |