Re: Andrei's "iterators must go" presentation
george.ryan@gmail.com () wrote (abridged):
I've read through this presentation:
http://www.boostcon.com/site-media/var/sphene/sphwiki/attachment/200
9/05/08/iterators-must-go.pdf
and I am confused about how ranges are significantly different
enough from iterators to warrant the avocation of their
elimination. Yeah, iterators have some complexity, but I've
always been led to believe the complexity was there for a reason.
Is it syntactic sugar or is there something actually gained here?
I thought the PDF was pretty self-explanatory. It makes a strong case
that much of the complexity of iterators arises because they are the
wrong abstraction for the job at hand.
You can make them work, but it's clumsy. For example, if you want to
present the characters of a classic C-string, terminated by '\0', then
that's easier with a single range object than with a pair of iterators.
There's nowhere for the second iterator to point to. It has to be in a
special state as an "end" iterator, and comparing another iterator
against it has to detect that state and then compare the current
character against '\0'. Having the functionality and interface split over
2 objects turns what should be a simple job into a harder one.
Syntactic sugar would mean using something like std::pair<iterator,
iterator>, and even that isn't to be sneezed at because it helps keep the
right pairs together. The PDF, however, goes far beyond that. It gives
many more examples than C-Strings.
-- Dave Harris, Nottingham, UK.
--
[ See http://www.gotw.ca/resources/clcm.htm for info about ]
[ comp.lang.c++.moderated. First time posters: Do this! ]