cleanup, docs

This commit is contained in:
root
2026-06-16 12:21:31 +00:00
parent dff1959341
commit ea08d5f28b
296 changed files with 1571 additions and 1940 deletions
+3 -4
View File
@@ -13,7 +13,6 @@ return value : none
:content
Appends a child under the next numeric key. Empty values become list-shaped. Existing contiguous lists continue at their size; non-list maps use the next unused numeric key and remain non-list.
```cpp
DValue first; first = "first";
DValue list; list.set_array(); list.push(first);
```
:example
print("DValue::push example\n");