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 -6
View File
@@ -20,9 +20,6 @@ return value : none
:content
Assignment overloads forward to the matching `set(...)` overloads. They are the normal concise way to write string, number, pointer, `DValue`, and `StringMap` values. Boolean values should use `set_bool()` to avoid overload ambiguity.
```cpp
DValue value;
value = "ok";
value = 42.0;
context.call["user"] = StringMap{{"name", "Ada"}};
```
:example
print("DValue::assign example\n");