摘要: Name:Sort ListSource:Collections <test library>Arguments:[ list_ ]Sorts the given list in place. The strings are sorted alphabetically and the numbers 阅读全文
posted @ 2017-06-19 23:02 垄上行 阅读(324) 评论(0) 推荐(0)
摘要: Name:Set List ValueSource:Collections <test library>Arguments:[ list_ | index | value ]Sets the value of `list` specified by `index` to the given `val 阅读全文
posted @ 2017-06-19 22:59 垄上行 阅读(477) 评论(0) 推荐(0)
摘要: Name:Reverse ListSource:Collections <test library>Arguments:[ list_ ]Reverses the given list in place. Note that the given list is changed and nothing 阅读全文
posted @ 2017-06-19 22:55 垄上行 阅读(261) 评论(0) 推荐(0)
摘要: Name:Remove Values From ListSource:Collections <test library>Arguments:[ list_ | *values ]Removes all occurences of given `values` from `list`. It is 阅读全文
posted @ 2017-06-19 22:53 垄上行 阅读(545) 评论(0) 推荐(0)
摘要: Name:Remove From ListSource:Collections <test library>Arguments:[ list_ | index ]Removes and returns the value specified with an `index` from `list`. 阅读全文
posted @ 2017-06-19 22:50 垄上行 阅读(525) 评论(0) 推荐(0)
摘要: Name:Remove DuplicatesSource:Collections <test library>Arguments:[ list_ ]Returns a list without duplicates based on the given `list`. Creates and ret 阅读全文
posted @ 2017-06-19 22:46 垄上行 阅读(427) 评论(0) 推荐(0)
摘要: Name:Log DictionarySource:Collections <test library>Arguments:[ dictionary | level=INFO ]Logs the size and contents of the `dictionary` using given `l 阅读全文
posted @ 2017-06-19 22:41 垄上行 阅读(619) 评论(0) 推荐(0)
摘要: Name:Lists Should Be EqualSource:Collections <test library>Arguments:[ list1 | list2 | msg=None | values=True | names=None ]Fails if given lists are u 阅读全文
posted @ 2017-06-19 22:35 垄上行 阅读(1307) 评论(0) 推荐(0)
摘要: Name:List Should Not Contain DuplicatesSource:Collections <test library>Arguments:[ list_ | msg=None ]Fails if any element in the `list` is found from 阅读全文
posted @ 2017-06-19 22:25 垄上行 阅读(227) 评论(0) 推荐(0)
摘要: Name:Keep In DictionarySource:Collections <test library>Arguments:[ dictionary | *keys ]Keeps the given `keys` in the `dictionary` and removes all oth 阅读全文
posted @ 2017-06-19 22:20 垄上行 阅读(293) 评论(0) 推荐(0)
摘要: Name:Insert Into ListSource:Collections <test library>Arguments:[ list_ | index | value ]Inserts `value` into `list` to the position specified with `i 阅读全文
posted @ 2017-06-19 22:16 垄上行 阅读(546) 评论(0) 推荐(0)
摘要: Name:Get Index From ListSource:Collections <test library>Arguments:[ list_ | value | start=0 | end=None ]Returns the index of the first occurrence of 阅读全文
posted @ 2017-06-19 22:11 垄上行 阅读(600) 评论(0) 推荐(0)
摘要: Name:Get From ListSource:Collections <test library>Arguments:[ list_ | index ]Returns the value specified with an `index` from `list`. The given list 阅读全文
posted @ 2017-06-19 22:05 垄上行 阅读(2223) 评论(0) 推荐(0)
摘要: Name:Count Values In ListSource:Collections <test library>Arguments:[ list_ | value | start=0 | end=None ]Returns the number of occurrences of the giv 阅读全文
posted @ 2017-06-19 22:02 垄上行 阅读(449) 评论(0) 推荐(0)
摘要: Name:Get Slice From ListSource:Collections <test library>Arguments:[ list_ | start=0 | end=None ]Returns a slice of the given list between `start` and 阅读全文
posted @ 2017-06-19 21:56 垄上行 阅读(526) 评论(0) 推荐(0)
摘要: Name: Copy DictionarySource:Collections <test library>Arguments:[ dictionary ]Returns a copy of the given dictionary. The given dictionary is never al 阅读全文
posted @ 2017-06-19 21:41 垄上行 阅读(315) 评论(0) 推荐(0)