Lines Matching full:lists
8 Smart Combine Lists
10 [Arguments] @{lists}
13 # lists A list of lists to be combined. Any item in this list which is
16 ${list_size}= Get Length ${lists}
19 FOR ${arg} IN @{lists}
20 ${type_arg}= Evaluate str(type($lists[${index}])).split("'")[1]
22 Remove From List ${lists} ${index}
28 ${new_list}= Combine Lists @{lists}
33 Intersect Lists
34 [Documentation] Intersects the two lists passed in. Returns a list of
35 ... values common to both lists with no duplicates.
62 Subtract Lists