Name:
Insert Into List
Source:
Collections <test library>
Arguments:
[ list_ | index | value ]
Inserts `value` into `list` to the position specified with `index`.
Index '0' adds the value into the first position, '1' to the second, and so on. Inserting from right works with negative indices so that '-1' is the second last position, '-2' third last, and so on. Use `Append To List` to add items to the end of the list.
If the absolute value of the index is greater than the length of the list, the value is added at the end (positive index) or the beginning (negative index). An index can be given either as an integer or a string that can be converted to an integer.