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