The "ds_list_replace_list" Function
Syntax#
| Argument | Type | Description |
|---|---|---|
id | ds_list | The data structure to add new data to |
oldlist | ds_list | The data structure to be replaced |
newlist | ds_list | The data structure to be added |
Description#
Replaces a ds_list previously added to another ds_list with the contents of a new ds_list.
warning
Because data structures are referenced by numerical values, this script may not behave as you expect! If a numerical entry in the parent ds_list happens to match the value of a child ds_list, there is no guarantee which value will be replaced!
Intended only for use with JSON functions. Normally, adding one data structure to another simply stores a reference to the data structure, therefore this function is necessary to flag the list value as a data structure itself so its contents are written to the JSON file.

X1