( list_loop )

Legend
Has corresponding code
No direct match, but an alternative exists
No corresponding code
-TODO
( .. )Not localized
Example Python
pytest
C++
GoogleTest
Swift
Testing
Kotlin
jUnit
Bash
bats
( list_foreach ) for item in items - - - -
( list_foreach_with_index ) for i, v in enumerate(items) - - - -
( list_for_in ) for i in range(n) - - - -
( list_foreach_multi_col ) use zip - - - -