uce/site/doc/pages/2_StringList_keys.txt
2026-06-15 21:42:50 +00:00

16 lines
246 B
Plaintext

: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", ...}
```