]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/iterator/doc/indirect_iterator_abstract.rst
add subtree-ish sources for 12.0.3
[ceph.git] / ceph / src / boost / libs / iterator / doc / indirect_iterator_abstract.rst
1 .. Copyright David Abrahams 2006. Distributed under the Boost
2 .. Software License, Version 1.0. (See accompanying
3 .. file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
4
5 ``indirect_iterator`` adapts an iterator by applying an
6 *extra* dereference inside of ``operator*()``. For example, this
7 iterator adaptor makes it possible to view a container of pointers
8 (e.g. ``list<foo*>``) as if it were a container of the pointed-to type
9 (e.g. ``list<foo>``). ``indirect_iterator`` depends on two
10 auxiliary traits, ``pointee`` and ``indirect_reference``, to
11 provide support for underlying iterators whose ``value_type`` is
12 not an iterator.
13
14
15