Files
iterator/doc/indirect_iterator_abstract.rst
Dave Abrahams d15302e683 Bring branch up-to-date with trunk
[SVN r21992]
2004-01-27 04:50:52 +00:00

12 lines
465 B
ReStructuredText

``indirect_iterator`` adapts an iterator by applying an
*extra* dereference inside of ``operator*()``. For example, this
iterator adaptor makes it possible to view a container of pointers
(e.g. ``list<foo*>``) as if it were a container of the pointed-to type
(e.g. ``list<foo>``). ``indirect_iterator`` depends on two
auxiliary traits, ``pointee`` and ``indirect_reference``, to
provide support for underlying iterators whose ``value_type`` is
not an iterator.