【RF库Collections测试】Insert Into List

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.

 

 

posted @ 2017-06-19 22:16  垄上行  阅读(537)  评论(0编辑  收藏  举报