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

25 lines
453 B
Plaintext

:title
0_StringList
:sig
0_StringList
:see
>types
0_String
split
join
2_StringList_filter
2_StringList_map
2_StringList_keys
2_StringList_each
:content
Sequential container of `String` values. It inherits normal `std::vector<String>` behavior and adds collection helpers for filtering, mapping, indexes, and iteration.
```cpp
StringList labels = split("a,b,c", ",").map([](String s) { return(to_upper(s)); });
```
See the method pages for details.