Skip to main content
List: fill list with value The “List: fill list with value” mapper fills an array with the provided length and value.

Fields

Start

The start index to use when creating the array.

Length

The length of the array to create.

Sample data

InputStartLengthResult
003[0, 0 , 0]
“ABC”03[“ABC”,“ABC”,“ABC”]
“ABC”23{2: “ABC”, 3: “ABC”, 4: “ABC”}