Cerberus X Documentation

Module cerberus.list

The list module provides support for doubly linked lists. More...

Declarations

Imported By
cerberus
Please note that only documented modules are listed here, there might be undocumented modules that import this one.
Classes
FloatList FloatList is a convenience class for handling lists of floating point values.
IntList IntList is a convenience class for handling lists of integer values.
List<T> A linked list is a container style data structure that provides efficient support for the addition, removal and sequential traversal of objects.
Node<T> See the List class for a discussion of list nodes.
StringList StringList is a convenience class for handling lists of string values.

Detailed Discussion

The list module provides support for doubly linked lists.

In addition to the generic List class, the list module also provides utility classes for handling lists of ints, floats and strings.

Please refer to the List class for more information on how cerberus implements linked lists.