What is your opinion?
Counting in Iteration Models
by Barry Revzin
From the article:
There’s a really interesting issue pointed out in the July 2021 mailing by way of P2406R0.
Basically, in C++, the iterator loop structure ordering is as follows (I wrote it with a goto to make the ordering more obvious. Note that in C++, we start with the it != end check, not the ++it operation. The point of this ordering is to focus on the transition from one position to the next)...
Add a Comment
Comments are closed.