This commit is contained in:
root
2026-06-15 21:42:50 +00:00
parent 34a97e2577
commit 99cd92fb4a
126 changed files with 1615 additions and 1057 deletions
+16
View File
@@ -0,0 +1,16 @@
: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"); });
```