Lines Matching full:list
2 Documentation This module contains keywords for list manipulation.
7 [Documentation] Combine all valid list arguments and return the result.
11 # lists A list of lists to be combined. Any item in this list which is
12 # NOT a list will be removed.
19 … Run Keyword If '${type_arg}' != 'list' Run Keywords Remove From List ${lists} ${index} AND
30 [Documentation] Intersects the two lists passed in. Returns a list of
34 # list1 The first list to intersect.
35 # list2 The second list to intersect.
40 @{intersected_list} Create List
48 ${rc}= Run Keyword and Return Status List Should Contain Value ${smaller_list} ${element}
49 Run Keyword If '${rc}' == 'True' Append to List ${intersected_list} ${element}
58 [Documentation] Subtract list 2 from list 1 and return the result.
59 # Return list contain items from the list 1 which are not present
60 # in the list 2.
63 # list1 The base list which is to be subtracted from.
64 # list2 The list which is to be subtracted from list1.
66 ${diff_list}= Create List
71 ... Append To List ${diff_list} ${item}