Andre Poenitz wrote: > Wrong. rend is a wrapper around begin(). It _cannot_ be a pointer to "one > before start", as already forming such a pointer is illegal. Not the > difference to the "one past" which can legally be formed, but not > dereferenced.
That all wrong, AFAIK. From where do you have taken it? rend is _not_ a wrapper around begin, it point to 'one before start'. And rbegin points to the last element, not to one past end. Alfredo