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.
Example
'Finish Oven Zone 1' ASSET 'Temperature - Oven' PROPERTY VALUES 'Paint Line' ASSET 'Speed - Actual' PROPERTY VALUES APPEND
Combines two queries - the oven temperature on Finish Oven Zone 1, and the actual speed of the Paint Line - into a single response.