| Home | Trees | Indices | Help |
|
|---|
|
|
Block is a set of Generators in a specific order who's values are combined into a block of data. The BlockSize generator can be used to output the size of the block or other generators.
Example:
>>> gen = Block([ ... Static('Hello'), ... Static(' '), ... Static('World') ... ]) >>> print gen.getValue() Hello World
DictionaryList generator.
Will cause infinitlooping since the .next() is never called on sub
generators.
See Also: MultiBlock, Block2, Block3, BlockSize, MultiBlockCount
|
|||
|
|||
|
|||
|
|||
| string |
|
||
| string |
|
||
| number |
|
||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
| Generator |
|
||
|
|||
|
Inherited from |
|||
|
|||
Base constructor, please call me!
|
Note: We arn't going to next on any of the sub generators. This is left to the group or whatever todo.
|
Even though we don't propogate .next calls we should reset things.
|
Return data, passed through a transformer if set.
|
Return raw value w/o passing through transformer if set. OVERRIDE
|
Size of generator after all transformations
|
Append a generator to end of list.
|
Insert generator into list
|
Remove a generator from list
|
Set array of generators.
|
Return iterator for Generator object. This is always the Generator object itself.
|
| Home | Trees | Indices | Help |
|
|---|
| Generated by Epydoc 3.0.1 on Sat Aug 16 12:17:03 2008 | http://epydoc.sourceforge.net |