show/hide this revision's text 2 deleted 17 characters in body

No, it's a bad idea to get a hold on iter.end() before the loop starts. If your loop changes the container then the end iterator may be invalidated. Also, the end() method is guaranteed to be O(1).So never put the call to the end() method outside the loop; always have the loop condition testing against a valid end iterator.

Premature optimization is the root of all evil.

Also, the compiler may be smarter than you think.

show/hide this revision's text 1

No, it's a bad idea to get a hold on iter.end() before the loop starts. If your loop changes the container then the end iterator may be invalidated. Also, the end() method is guaranteed to be O(1). So never put the call to the end() method outside the loop; always have the loop condition testing against a valid end iterator.

Premature optimization is the root of all evil.

Also, the compiler may be smarter than you think.