Cerberus X Documentation

Module cerberus.stack

The stack module provides support for stacks. More...

Declarations

Imported By
cerberus
Please note that only documented modules are listed here, there might be undocumented modules that import this one.
Classes
FloatStack A FloatStack is a convenience class for dealing with stacks of floats.
IntStack An IntStack is a convenience class for dealing with stacks of ints.
Stack<T> Stacks provide 2 basic operations - push and pop.
StringStack A StringStack is a convenience class for dealing with stacks of strings.

Detailed Discussion

The stack module provides support for stacks.

In addition to the generic Stack class, the stack module also provides utility classes for handling stacks of ints, floats and strings.

Please refer to the Stack class for more information on how cerberus implements stacks.