pstore2
Classes
array_stack.hpp File Reference

array_stack is a simple container which provides an interface very similar to std::stack, but based on std::array. More...

#include <array>
#include <cstdlib>
#include "pstore/support/assert.hpp"
Include dependency graph for array_stack.hpp:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  pstore::array_stack< Ty, Size >
 A simple wrapper for std::array which provides the functionality of a stack, specifically a FILO (first-in, last-out) data structure. More...
 

Detailed Description

array_stack is a simple container which provides an interface very similar to std::stack, but based on std::array.