Data / Lists
data/list_add
List Add
Adds a value to a list and returns the modified list.
Note: Modifies the list in-place and also returns it for chaining.
Inputs
| Name | Type | Optional | Description |
|---|---|---|---|
exec |
exec | Incoming execution. | |
list |
list | The list to add to. | |
value |
any | The value to add. |
Outputs
| Name | Type | Description |
|---|---|---|
exec |
exec | Continues after adding. |
list |
list | The modified list. |