From: Mike Sackett (msackett_at_[hidden])
Date: 2001-07-25 21:30:41


> Do you mean that you just don't want to write (c.begin(),c.end()) each
> time?

In my code, I almost never write (c.begin(), c.end()). Rather, I end up
writing stuff like (incredibly_expressive_container_name.begin(),
incredibly_expressive_container_name.end()), and then code up a wrapper
about 5 minutes later.

I think we tend to underestimate how many such wrappers are written, over
and over again, by many different programmers.

..Mike