: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.
