Used to create a container.
Inputs
| Port | Type | Description |
|---|---|---|
| Id | Integer | Container ID |
| Create | Any | Creates a container |
Outputs
| Port | Type | Description |
|---|---|---|
| Error | Integer | Triggers when an error occurs |
| Success | Any | Tiggers when a container is created |
| Id | Integer | Outputs the container ID |
Used to edit a container.
Inputs
| Port | Type | Description |
|---|---|---|
| Id | Integer | Container ID |
| Add | Any | Adds the passed item to the container |
| AddUnique | Any | Adds the passed item if it didn't exist |
| Remove | Any | Removes all occurrences of the current item |
| Clear | Any | Empties the container |
| GetCount | Any | Gets the number of items in the container |
| Delete | Any | Deletes the container |
Outputs
| Port | Type | Description |
|---|---|---|
| Error | Integer | Triggers when an error occurs |
| Success | Any | Triggers when the operation successfully completed |
Used to iterate over a container.
Inputs
| Port | Type | Description |
|---|---|---|
| Id | Integer | Container ID |
| Start | Any | Starts iterating the container |
Outputs
| Port | Type | Description |
|---|---|---|
| Error | Integer | Triggers when an error occurs |
| Done | Any | Triggers when the operation successfully completed |
| Out | Any | Outputs the container ID |