docs
This commit is contained in:
@@ -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"); });
|
||||
```
|
||||
Reference in New Issue
Block a user