Lists
Add
4min
The Add action adds a specified object to a list.
- List to which an object is added (list<object>): This parameter represents the list into which the object will be added. It serves as both an input and an output, meaning that the action will modify the data within the same variable.
- Input object to be added (object): This parameter specifies the object that will be added to the list.
- List to which an object is added (list<object>): This output reflects the updated list after the object has been successfully added.
- Ensure that the input object provided is compatible with the type of objects expected within the target list.