|
_GLIBCXX17_CONSTEXPR | move_iterator (iterator_type __i) |
|
template<typename _Iter > |
_GLIBCXX17_CONSTEXPR | move_iterator (const move_iterator< _Iter > &__i) |
|
_GLIBCXX17_CONSTEXPR iterator_type | base () const |
|
_GLIBCXX17_CONSTEXPR reference | operator* () const |
|
_GLIBCXX17_CONSTEXPR move_iterator | operator+ (difference_type __n) const |
|
_GLIBCXX17_CONSTEXPR move_iterator & | operator++ () |
|
_GLIBCXX17_CONSTEXPR move_iterator | operator++ (int) |
|
_GLIBCXX17_CONSTEXPR move_iterator & | operator+= (difference_type __n) |
|
_GLIBCXX17_CONSTEXPR move_iterator | operator- (difference_type __n) const |
|
_GLIBCXX17_CONSTEXPR move_iterator & | operator-- () |
|
_GLIBCXX17_CONSTEXPR move_iterator | operator-- (int) |
|
_GLIBCXX17_CONSTEXPR move_iterator & | operator-= (difference_type __n) |
|
_GLIBCXX17_CONSTEXPR pointer | operator-> () const |
|
_GLIBCXX17_CONSTEXPR reference | operator[] (difference_type __n) const |
|
template<typename _Iterator>
class std::move_iterator< _Iterator >
Class template move_iterator is an iterator adapter with the same behavior as the underlying iterator except that its dereference operator implicitly converts the value returned by the underlying iterator's dereference operator to an rvalue reference. Some generic algorithms can be called with move iterators to replace copying with moving.
Definition at line 1010 of file bits/stl_iterator.h.