Hacker Newsnew | past | comments | ask | show | jobs | submitlogin

> right now I looks mutable, something like `for (constexpr size_t I : INPUT_COUNT)` might be better

I thought the same, but then you lose the ability to control the increment step. For example, one might want to iterate pairwise.

Regarding syntax, you could mandate that the loop variable has to be declared `constexpr` as well, which makes it clear that it can't be modified in the loop body.



You could make a temporary or use some std::range/span helper. Double constexpr would work, too. Feels gross in the same way template template does.




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: