merge-lists
Merges two lists into one.
Arguments
Inputs:
first list
: The first list to be merged.
second list
: The second list to be merged.
Output:
merged list
: A list containing all elements of 'first list' and 'second list'.
TIP
: if both lists contain ValueX, then ValueX will be in the merged list twice. If you wish to remove those duplicates, use the unique-list-items
adaptor after using merge-lists
.
Last updated