:sig template 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"); }); ```