Lines Matching full:lists
6 Smart Combine Lists
8 [Arguments] @{lists}
11 # lists A list of lists to be combined. Any item in this list which is
14 ${list_size}= Get Length ${lists}
17 FOR ${arg} IN @{lists}
18 ${type_arg}= Evaluate str(type($lists[${index}])).split("'")[1]
19 … Run Keyword If '${type_arg}' != 'list' Run Keywords Remove From List ${lists} ${index} AND
24 ${new_list}= Combine Lists @{lists}
29 Intersect Lists
30 [Documentation] Intersects the two lists passed in. Returns a list of
31 ... values common to both lists with no duplicates.
57 Subtract Lists