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
+4 -5
View File
@@ -20,10 +20,9 @@ Each non-empty line is split on the first `separator`. Lines without the separat
Example:
```uce
StringMap cfg = split_kv("host = localhost\nport = 8080");
// cfg["host"] == "localhost"
// cfg["port"] == "8080"
```
This is useful for small config files, metadata blocks, and tests that need predictable key/value parsing.
:example
StringMap values = split_kv("name=Ada\nrole=admin");
print(values["name"], "\n");