is it possible to peek next element in a container which the iterator currently points to without changing the iterator?
For example in std::set,
int myArray[]= {1,2,3,4};
set <int> mySet(myArray, myArray+4);
set <int>::iterator iter = mySet.begin();
//peek the next element in set without changing iterator.
mySet.erase(iter); //erase the element if next element is n+1
.end()before you continue! – GManNickG Sep 9 '10 at 4:06priorandnextfunctions for doing just that (it takes the iterator by value, thus making a copy as you suggested). See boost.org/libs/utility/utility.htm for details. – Chris Jester-Young Sep 9 '10 at 4:11jdoes not change withi, it's a different variable who's value is no way tied to that ofi. Whatjpoints to changes, and it just so happensipoints there as well. – GManNickG Sep 9 '10 at 4:19