mirror of
https://github.com/boostorg/iterator.git
synced 2025-07-30 04:47:20 +02:00
Issue 9.26
[SVN r21733]
This commit is contained in:
@ -208,11 +208,10 @@ __ `operator arrow`_
|
|||||||
|
|
||||||
:Returns: an object convertible to ``value_type``. For constant
|
:Returns: an object convertible to ``value_type``. For constant
|
||||||
objects ``v`` of type ``value_type``, and ``n`` of type
|
objects ``v`` of type ``value_type``, and ``n`` of type
|
||||||
``difference_type``, and reference ``p`` equal to
|
``difference_type``, ``(*this)[n] = v`` is equivalent to
|
||||||
``*static_cast<Derived const*>(this)``, ``(*this)[n] = v`` is
|
``*(*this + n) = v``, and ``static_cast<value_type
|
||||||
equivalent to ``*(p+ n) = v``, and ``static_cast<value_type
|
|
||||||
const&>((*this)[n])`` is equivalent to
|
const&>((*this)[n])`` is equivalent to
|
||||||
``static_cast<value_type const&>(*(p+n))``
|
``static_cast<value_type const&>(*(*this + n))``
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user