Cerberus X Documentation

Module cerberus.map

The map module provides support for associative maps. More...

Declarations

Imported By
cerberus , cerberus.set
Please note that only documented modules are listed here, there might be undocumented modules that import this one.
Classes
FloatMap<V> A FloatMap is a convenience class for mapping floats to values.
IntMap<V> An IntMap is a convenience class for mapping ints to values.
Map<K,V> A map is a container style object that provides a mechanism for associating key objects with value objects.
Node<K,V> Node objects are responsible for mainting the association between keys and values in a map.
StringMap<V> A StringMap is a convenience class for mapping strings to values.

Detailed Discussion

The map module provides support for associative maps.

In addition to the generic Map class, the map module also provides utility classes for handling maps of ints, floats and strings.

Please refer to the Map class for more information on how cerberus implements maps.