Base class for SmallStack. More...
#include <smallstack_type.hpp>
Public Member Functions | |
SmallStackItem (const Titem &value, Tindex next) | |
Create a new item. | |
Data Fields | |
Tindex | next |
Pool index of next item. | |
Titem | value |
Value of current item. |
Base class for SmallStack.
We cannot add this into SmallStack itself as certain compilers don't like it.
Definition at line 98 of file smallstack_type.hpp.
SmallStackItem< Titem, Tindex >::SmallStackItem | ( | const Titem & | value, | |
Tindex | next | |||
) | [inline] |
Create a new item.
value | Value of the item. | |
next | Next item in the stack. |
Definition at line 107 of file smallstack_type.hpp.