modm API documentation
|
LIFO stack. More...
#include <modm/container/stack.hpp>
Public Typedefs | |
typedef Container::Size | Size |
Public Member Functions | |
bool | isEmpty () |
bool | isFull () |
Size | getSize () |
Size | getMaxSize () |
T & | get () |
const T & | get () const |
bool | push (const T &value) |
void | pop () |
Protected Attributes | |
Container | c |
LIFO stack.
Elements are pushed/popped from the "back" of the specific container, which is known as the top of the stack.
getFront(), removeFront(), prepend()