class documentation
class UnsortedTableMap(MapBase):
Map implementation using an unordered list.
Method | __delitem__ |
Remove item associated with key k (raise KeyError if not found). |
Method | __getitem__ |
Return value associated with key k (raise KeyError if not found). |
Method | __init__ |
Create an empty map. |
Method | __iter__ |
Generate iteration of the map's keys. |
Method | __len__ |
Return number of items in the map. |
Method | __setitem__ |
Assign value v to key k, overwriting existing value if present. |
Instance Variable | _table |
Undocumented |
Inherited from MapBase
:
Class | _ |
Lightweight composite to store key-value pairs as map items. |