17 lines
318 B
Plaintext
17 lines
318 B
Plaintext
:sig
|
|
Use map(StringList items, function<String (String)> f)
|
|
|
|
:see
|
|
map
|
|
filter
|
|
0_StringList
|
|
|
|
:content
|
|
`list_map()` was removed because `StringList` is `std::vector<String>` and the generic `map()` helper covers the same behavior without a second implementation to maintain.
|
|
|
|
Use:
|
|
|
|
|
|
:example
|
|
print("list_map example\n");
|