Signature
struct StringList — ordered list of String values
Parameters
return value : use methods such as
filter(), map(), keys(), each(), unique(), sort(), some(), every(), and find() to derive or inspect listsStringList is an ordered container of String values. It inherits normal std::vector<String> behavior and adds list helpers for filtering, mapping, indexes, iteration, deduplication, sorting, and predicate checks.
Example
StringList labels = split("a,b,a", ",").unique().map([](String item) { return(to_upper(item)); });
print(join(labels, ","), "\n");
Output
A,B