mirror of
https://github.com/boostorg/iterator.git
synced 2025-07-29 12:27:33 +02:00
removed the word "options"
[SVN r21812]
This commit is contained in:
@ -24,8 +24,8 @@
|
|||||||
, typename enable_if_convertible<I2, Iterator>::type* = 0 // exposition only
|
, typename enable_if_convertible<I2, Iterator>::type* = 0 // exposition only
|
||||||
, typename enable_if_convertible<F2, UnaryFunction>::type* = 0 // exposition only
|
, typename enable_if_convertible<F2, UnaryFunction>::type* = 0 // exposition only
|
||||||
);
|
);
|
||||||
Iterator base() const;
|
|
||||||
UnaryFunction functor() const;
|
UnaryFunction functor() const;
|
||||||
|
Iterator base() const;
|
||||||
reference operator*() const;
|
reference operator*() const;
|
||||||
transform_iterator& operator++();
|
transform_iterator& operator++();
|
||||||
transform_iterator& operator--();
|
transform_iterator& operator--();
|
||||||
@ -72,7 +72,7 @@ The argument ``Iterator`` shall model Readable Iterator.
|
|||||||
.............................
|
.............................
|
||||||
|
|
||||||
The resulting ``transform_iterator`` models the most refined of the
|
The resulting ``transform_iterator`` models the most refined of the
|
||||||
following options that is also modeled by ``Iterator``.
|
following that is also modeled by ``Iterator``.
|
||||||
|
|
||||||
* Writable Lvalue Iterator if ``transform_iterator::reference`` is a non-const reference.
|
* Writable Lvalue Iterator if ``transform_iterator::reference`` is a non-const reference.
|
||||||
|
|
||||||
@ -140,16 +140,16 @@ operations.
|
|||||||
:Requires: ``OtherIterator`` is implicitly convertible to ``Iterator``.
|
:Requires: ``OtherIterator`` is implicitly convertible to ``Iterator``.
|
||||||
|
|
||||||
|
|
||||||
``Iterator base() const;``
|
|
||||||
|
|
||||||
:Returns: ``m_iterator``
|
|
||||||
|
|
||||||
|
|
||||||
``UnaryFunction functor() const;``
|
``UnaryFunction functor() const;``
|
||||||
|
|
||||||
:Returns: ``m_f``
|
:Returns: ``m_f``
|
||||||
|
|
||||||
|
|
||||||
|
``Iterator base() const;``
|
||||||
|
|
||||||
|
:Returns: ``m_iterator``
|
||||||
|
|
||||||
|
|
||||||
``reference operator*() const;``
|
``reference operator*() const;``
|
||||||
|
|
||||||
:Returns: ``m_f(*m_iterator)``
|
:Returns: ``m_f(*m_iterator)``
|
||||||
|
Reference in New Issue
Block a user