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”} |
The List: fill list with value mapper fills an array with the provided length and value.
| 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”} |