Stefan Scholz / ETL
Embed: (wiki syntax)

« Back to documentation index

stack

A Last-in / first-out stack with the capacity defined at compile time, written in the STL style. More...

Data Structures

class  array_view_bounds
 The exception thrown when the index is out of bounds. More...
class  array_view_uninitialised
 The exception thrown when the view is uninitialised. More...
class  array_wrapper_bounds
 The exception thrown when the index is out of bounds. More...
class  intrusive_stack_base< TLink >
 Base for intrusive stack. More...
class  intrusive_stack< TValue, TLink >
 An intrusive stack. More...
class  stack_exception
 The base class for stack exceptions. More...
class  stack_full
 The exception thrown when the stack is full. More...
class  stack_empty
 The exception thrown when the stack is empty. More...
class  stack_base
 A fixed capacity stack written in the STL style. More...
class  istack< T >
 This is the base for all stacks that contain a particular type. More...
class  stack< T, SIZE >
 A fixed capacity stack. More...
class  string_view_bounds
 The exception thrown when the index is out of bounds. More...
class  string_view_uninitialised
 The exception thrown when the view is uninitialised. More...

Detailed Description

A Last-in / first-out stack with the capacity defined at compile time, written in the STL style.