__init__(self,
group=None,
value=1,
incrementor=1,
formatString=None,
maxValue=None,
maxIterations=None,
packString=None)
(Constructor)
| source code
|
Base constructor, please call me!
- Parameters:
group (Group) - Group this generator works with
value (number) - Number to increment
incrementor (number) - Increment amount (can be negative), default is 1
formatString (string) - Format string for value (optional)
maxValue (number) - Maximum value (optional, default None)
maxIterations (number) - Maximum number of times to increment value (optional, default
None)
packString (string) - Pack format string. Note that use of this option will override
formatString. (optional, default None)
- Overrides:
generator.Generator.__init__
|