An array that can also be used as a stack (with a fixed maximum size). More...
#include <ArrayStack.hpp>
Inherits Raul::Array< T >.

Public Member Functions | |
| ArrayStack (size_t size=0) | |
| ArrayStack (size_t size, T initial_value) | |
| ArrayStack (size_t size, const Array< T > &contents) | |
| void | alloc (size_t num_elems) | 
| void | alloc (size_t num_elems, T initial_value) | 
| void | push_back (T n) | 
| size_t | size () const | 
| T & | operator[] (size_t i) const | 
| T & | at (size_t i) const | 
An array that can also be used as a stack (with a fixed maximum size).
 1.7.1