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
+10 -7
View File
@@ -4,12 +4,15 @@ StringList StringList::keys() const
:params
return value : index keys as strings
:see
0_StringList
:content
Returns the list indexes as strings from `0` through `size() - 1`.
Returns the list indexes as strings from `0` through `size() - 1`. Use it when code expects string keys for a list-shaped value.
```cpp
StringList keys = items.keys(); // {"0", "1", ...}
```
:example
StringList items = split("red,green,blue", ",");
print(join(items.keys(), ","), "\n");
:see
>types
0_StringList
2_StringList_each
2_StringList_map