Generate list
Generates a list of items
Evaluation
This expression evaluates to a function of the form:
(seed) -> any
The function is consistent with generator semantics of the Random Data step.
Processing
Given a seed value, the function returns a list of items, each item is generated by the supplied generator function.
Settings
| Name | Type | Description | 
|---|---|---|
| Count | long | The number of items to generate. Must not be negative. If count is  | 
| Generator | function | Generator function of the form (seed) -> anythat is used to generate list items. | 
| Chance of nil | double | Probability in range of 0.0to1.0that the generator will returnnilinstead of generating a value. | 
