Package nltk :: Module util :: Class LazyMappedChain
[hide private]
[frames] | no frames]

Class LazyMappedChain

source code

              object --+    
                       |    
    internals.Deprecated --+
                           |
          object --+       |
                   |       |
AbstractLazySequence --+   |
                       |   |
       LazyConcatenation --+
                           |
                          LazyMappedChain

Use LazyConcatenation(LazyMap(func, lists)) instead.

Instance Methods [hide private]
 
__init__(self, lst, func)
x.__init__(...) initializes x; see x.__class__.__doc__ for signature
source code

Inherited from LazyConcatenation: __len__, iterate_from

Inherited from AbstractLazySequence: __add__, __cmp__, __contains__, __getitem__, __hash__, __iter__, __mul__, __radd__, __repr__, __rmul__, count, index

Inherited from object: __delattr__, __getattribute__, __reduce__, __reduce_ex__, __setattr__, __str__

Static Methods [hide private]

Inherited from internals.Deprecated: __new__

Class Variables [hide private]

Inherited from AbstractLazySequence (private): _MAX_REPR_SIZE

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self, lst, func)
(Constructor)

source code 

x.__init__(...) initializes x; see x.__class__.__doc__ for signature

Overrides: LazyConcatenation.__init__