Array State Manager
Aggregates dynamic inputs into arrays over time when updated. Each Input N corresponds to an Output N array that accumulates values until Reset.
| Data | Description |
|---|
| Number of Inputs | Number of input/output pairs to manage. |
| Input N | Dynamic inputs (N = 0..). |
| Alias N | Optional alias to rename the corresponding input/output pair. |
| Signal | Description |
|---|
| Update | Appends the current input values to their respective Output arrays. |
| Reset | Clears all accumulated arrays. |
Outputs
| Data | Description |
|---|
| Output N | Dynamic arrays holding accumulated values for input N. |
| Signal | Description |
|---|
| Updated | Emitted after Update completes. |
| Reset Done | Emitted when Reset completes. |