16 lines
246 B
Plaintext
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", ...}
|
|
```
|