Remix.run Logo
my-next-account 4 hours ago

Implementing STL iterators are a bloody PITA

flohofwoe 3 hours ago | parent [-]

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)