Module for_loop
Functions
- Iterates through i, where:
- min <= i < max
- min and max are only known at runtime
- MIN and MAX are known at compile-time, and dictate the static loop bounds.
- Iterates through i, where:
- 0 <= i < max
- max is only known at runtime
- MAX is known at compile-time, e.g. the fixed length of an array.