List: fill list with value The “List: fill list with value” mapper fills an array with the provided length and value.Documentation Index
Fetch the complete documentation index at: https://docs.alumio.com/llms.txt
Use this file to discover all available pages before exploring further.
Fields
Start
The start index to use when creating the array.Length
The length of the array to create.Sample data
| Input | Start | Length | Result |
|---|---|---|---|
| 0 | 0 | 3 | [0, 0 , 0] |
| “ABC” | 0 | 3 | [“ABC”,“ABC”,“ABC”] |
| “ABC” | 2 | 3 | {2: “ABC”, 3: “ABC”, 4: “ABC”} |