vector<>.rbegin()

M

Marc Schellens

my dinkumware docu says, vector<...>::rbegin() returns an iterator which
points just BEYOND the end of the controlled sequence.
Is that true?

so I cannot say:

for( riter i=v.rbegin(); i != v.rend(); i++)
{
something = (*i);
}

?

How to reverse iterate then?

for( riter i=v.rbegin(); i != v.rend(); i++)
{
something = (*(i+1));
}

???

thanks,
marc
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,776
Messages
2,569,603
Members
45,201
Latest member
KourtneyBe

Latest Threads

Top