libstdc++
|
#include <stl_iterator.h>
Inherits __detail::__move_iter_cat< _Iterator >.
Public Types | |
using | difference_type = iter_difference_t< _Iterator > |
using | iterator_concept = decltype(_S_iter_concept()) |
using | iterator_type = _Iterator |
using | pointer = _Iterator |
using | reference = iter_rvalue_reference_t< _Iterator > |
using | value_type = iter_value_t< _Iterator > |
Public Member Functions | |
template<typename _Iter > requires __convertible<_Iter> | |
constexpr | move_iterator (const move_iterator< _Iter > &__i) |
constexpr | move_iterator (iterator_type __i) |
constexpr iterator_type | base () && |
constexpr const iterator_type & | base () const &noexcept |
constexpr reference | operator* () const |
constexpr move_iterator | operator+ (difference_type __n) const |
constexpr move_iterator & | operator++ () |
constexpr move_iterator | operator++ (int) |
constexpr void | operator++ (int) |
constexpr move_iterator & | operator+= (difference_type __n) |
constexpr move_iterator | operator- (difference_type __n) const |
constexpr move_iterator & | operator-- () |
constexpr move_iterator | operator-- (int) |
constexpr move_iterator & | operator-= (difference_type __n) |
constexpr pointer | operator-> () const |
template<typename _Iter > requires __convertible<_Iter> && assignable_from<_Iterator&, const _Iter&> | |
constexpr move_iterator & | operator= (const move_iterator< _Iter > &__i) |
constexpr reference | operator[] (difference_type __n) const |
Friends | |
constexpr iter_rvalue_reference_t< _Iterator > | iter_move (const move_iterator &__i) noexcept(noexcept(ranges::iter_move(__i._M_current))) |
template<indirectly_swappable< _Iterator > _Iter2> | |
constexpr void | iter_swap (const move_iterator &__x, const move_iterator< _Iter2 > &__y) noexcept(noexcept(ranges::iter_swap(__x._M_current, __y._M_current))) |
template<sized_sentinel_for< _Iterator > _Sent> | |
constexpr iter_difference_t< _Iterator > | operator- (const move_iterator &__x, const move_sentinel< _Sent > &__y) |
template<sized_sentinel_for< _Iterator > _Sent> | |
constexpr iter_difference_t< _Iterator > | operator- (const move_sentinel< _Sent > &__x, const move_iterator &__y) |
template<sentinel_for< _Iterator > _Sent> | |
constexpr bool | operator== (const move_iterator &__x, const move_sentinel< _Sent > &__y) |
An iterator adaptor that yields an rvalue reference.
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 1435 of file bits/stl_iterator.h.
using std::move_iterator< _Iterator >::difference_type = iter_difference_t<_Iterator> |
Definition at line 1481 of file bits/stl_iterator.h.
using std::move_iterator< _Iterator >::iterator_concept = decltype(_S_iter_concept()) |
Definition at line 1477 of file bits/stl_iterator.h.
using std::move_iterator< _Iterator >::iterator_type = _Iterator |
Definition at line 1474 of file bits/stl_iterator.h.
using std::move_iterator< _Iterator >::pointer = _Iterator |
Definition at line 1482 of file bits/stl_iterator.h.
using std::move_iterator< _Iterator >::reference = iter_rvalue_reference_t<_Iterator> |
Definition at line 1483 of file bits/stl_iterator.h.
using std::move_iterator< _Iterator >::value_type = iter_value_t<_Iterator> |
Definition at line 1480 of file bits/stl_iterator.h.
|
inlineconstexpr |
Definition at line 1499 of file bits/stl_iterator.h.
|
inlineexplicitconstexpr |
Definition at line 1503 of file bits/stl_iterator.h.
|
inlineconstexpr |
Definition at line 1511 of file bits/stl_iterator.h.
|
inlineconstexpr |
Definition at line 1539 of file bits/stl_iterator.h.
|
inlineconstexprnoexcept |
Definition at line 1534 of file bits/stl_iterator.h.
|
inlineconstexpr |
Definition at line 1545 of file bits/stl_iterator.h.
|
inlineconstexpr |
Definition at line 1595 of file bits/stl_iterator.h.
|
inlineconstexpr |
Definition at line 1558 of file bits/stl_iterator.h.
|
inlineconstexpr |
Definition at line 1565 of file bits/stl_iterator.h.
|
inlineconstexpr |
Definition at line 1574 of file bits/stl_iterator.h.
|
inlineconstexpr |
Definition at line 1599 of file bits/stl_iterator.h.
|
inlineconstexpr |
Definition at line 1607 of file bits/stl_iterator.h.
|
inlineconstexpr |
Definition at line 1579 of file bits/stl_iterator.h.
|
inlineconstexpr |
Definition at line 1586 of file bits/stl_iterator.h.
|
inlineconstexpr |
Definition at line 1611 of file bits/stl_iterator.h.
|
inlineconstexpr |
Definition at line 1554 of file bits/stl_iterator.h.
|
inlineconstexpr |
Definition at line 1520 of file bits/stl_iterator.h.
|
inlineconstexpr |
Definition at line 1619 of file bits/stl_iterator.h.
Definition at line 1448 of file bits/stl_iterator.h.
|
friend |
Definition at line 1647 of file bits/stl_iterator.h.
|
friend |
Definition at line 1653 of file bits/stl_iterator.h.
|
friend |
Definition at line 1642 of file bits/stl_iterator.h.
|
friend |
Definition at line 1636 of file bits/stl_iterator.h.
|
friend |
Definition at line 1630 of file bits/stl_iterator.h.