This commit is contained in:
root
2026-06-15 21:42:50 +00:00
parent 34a97e2577
commit 99cd92fb4a
126 changed files with 1615 additions and 1057 deletions
+15
View File
@@ -0,0 +1,15 @@
:sig
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`.
```cpp
StringList keys = items.keys(); // {"0", "1", ...}
```