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
+24
View File
@@ -0,0 +1,24 @@
: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.