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) -> any that is used to generate list items. |
Chance of nil |
double |
Probability in range of 0.0 to 1.0 that the generator will return nil instead of generating a value. |