modm API documentation
|
Bounded queue. More...
#include <modm/container/queue.hpp>
Public Typedefs | |
typedef Container::Size | Size |
Public Member Functions | |
T & | get () |
Access first element. | |
const T & | get () const |
Access first element. | |
Size | getMaxSize () const |
Size | getSize () const |
bool | isEmpty () const |
bool | isFull () const |
bool | isNotEmpty () const |
bool | isNotFull () const |
void | pop () |
bool | push (const T &value) |
Protected Attributes | |
Container | c |
Bounded queue.