Package gbp :: Package rpm :: Module linkedlist :: Class LinkedListIterator
[hide private]
[frames] | no frames]

Class LinkedListIterator

      object --+        
               |        
_abcoll.Iterable --+    
                   |    
    _abcoll.Iterator --+
                       |
                      LinkedListIterator

Iterator for the linked list

Nested Classes [hide private]

Inherited from _abcoll.Iterable: __metaclass__

Instance Methods [hide private]
 
__init__(self, obj)
x.__init__(...) initializes x; see help(type(x)) for signature
 
next(self)
Return the next item from the iterator.

Inherited from _abcoll.Iterator: __iter__

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

Class Methods [hide private]

Inherited from _abcoll.Iterator: __subclasshook__

Class Variables [hide private]
  __abstractmethods__ = frozenset([])
  _abc_negative_cache_version = 21

Inherited from _abcoll.Iterator (private): _abc_negative_cache, _abc_registry

Inherited from _abcoll.Iterable (private): _abc_cache

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self, obj)
(Constructor)

 

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

Overrides: object.__init__
(inherited documentation)

next(self)

 

Return the next item from the iterator. When exhausted, raise StopIteration

Overrides: _abcoll.Iterator.next
(inherited documentation)