Hello,
I have a prob.
assuming that ii is at the last element of some I need to do:Code:
vector<Some> some(10); vector<Some>::iterator ii; vector<Some>::iterator cc;
In other words i need to know when ii+1 is an iterator more large of 10 (number of elements of verctor)Code:
cc=ii+1 //I'm out if (cc <= some.size()) ....
Thanks