Package bap :: Module adt :: Class Map
[hide private]
[frames] | no frames]

Class Map

source code

           object --+    
                    |    
                  ADT --+
                        |
       object --+       |
                |       |
    _abcoll.Sized --+   |
                    |   |
       object --+   |   |
                |   |   |
 _abcoll.Iterable --+   |
                    |   |
       object --+   |   |
                |   |   |
_abcoll.Container --+   |
                    |   |
      _abcoll.Mapping --+
                        |
                       Map
Known Subclasses:

Nested Classes [hide private]

Inherited from _abcoll.Sized: __metaclass__

Instance Methods [hide private]
 
__init__(self, *args)
x.__init__(...) initializes x; see help(type(x)) for signature
source code
 
__getitem__(self, i) source code
 
__len__(self) source code
 
__iter__(self) source code

Inherited from ADT: __cmp__, __repr__

Inherited from _abcoll.Mapping: __contains__, __eq__, __ne__, get, items, iteritems, iterkeys, itervalues, keys, values

Inherited from object: __delattr__, __format__, __getattribute__, __new__, __reduce__, __reduce_ex__, __setattr__, __sizeof__, __str__

Class Methods [hide private]

Inherited from _abcoll.Sized: __subclasshook__

Class Variables [hide private]
  __abstractmethods__ = frozenset([])
  _abc_cache = <_weakrefset.WeakSet object at 0x7f33fa254590>

Inherited from _abcoll.Mapping: __hash__

Inherited from _abcoll.Mapping (private): _abc_negative_cache, _abc_negative_cache_version

Inherited from _abcoll.Sized (private): _abc_registry

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self, *args)
(Constructor)

source code 

x.__init__(...) initializes x; see help(type(x)) for signature

Overrides: object.__init__
(inherited documentation)

__getitem__(self, i)
(Indexing operator)

source code 
Overrides: _abcoll.Mapping.__getitem__

__len__(self)
(Length operator)

source code 
Overrides: _abcoll.Sized.__len__

__iter__(self)

source code 
Overrides: _abcoll.Iterable.__iter__