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

17 lines
268 B
Plaintext

:sig
template<typename F> void StringList::each(F f) const
:params
f : callback called with each String
return value : none
:see
0_StringList
:content
Calls the callback once for each string in order.
```cpp
items.each([](String item) { print(item, "\n"); });
```