#include <queue.h>
|
bool | empty () const |
|
void | clear () |
|
template<class... TArgs> |
void | emplace (TArgs &&... args) |
|
void | push (const T &x) |
|
void | push (T &&x) |
|
T & | front () |
|
const T & | front () const |
|
T & | back () |
|
const T & | back () const |
|
T | pop () |
|
int | size () const |
|
template<class T>
class Common::Queue< T >
Variable size Queue class, implemented using our List class.
The documentation for this class was generated from the following file: