Hacker News new | ask | show | jobs
by my-next-account 3 days ago
Implementing STL iterators are a bloody PITA
2 comments

You don't need iterators for the range-based for loop, just a .begin() and .end() method which returns a raw pointer is enough.

E.g.:

https://github.com/floooh/oryol/blob/eb08cffe1b1cb6b05ed14ec...

(don't use that project though because it's been archived, I've switched back to plain old C in the meantime)

If it's a contiguous array, then sure.
std::range fixes this