|
Arduino Posix Filesystems
|
LIFO Stack which is based on a List. More...
#include <Stack.h>
Public Member Functions | |
| bool | push (T &data) |
| bool | pop (T &data) |
| bool | peek (T &data) |
| size_t | size () |
| bool | clear () |
| bool | empty () |
Protected Attributes | |
| List< T > | l |
LIFO Stack which is based on a List.
| T |