APPEND
Parameters
Order | Name | Type | Desc |
---|---|---|---|
1 | A | Asset List, Property Lists, Relationship List, Map | The first list |
1 | B | As above | The second list |
Returns
Places an item of the same type as passed to the command on the stack.
Description
This function combines two lists of the same type into a new list containing all of the distinct items.
If A is ('Alpha', 'Beta', 'Gamma') and B is ('Gamma', 'Delta', 'Epsilon'), the resulting list would be…
('Alpha', 'Beta','Gamma', 'Delta', 'Epsilon')
Note that the duplicate 'Gamma' has been removed.