(1) | ||
template< class Iterator1, class Iterator2 > bool operator==( const move_iterator<Iterator1>& lhs, const move_iterator<Iterator2>& rhs ); | (until C++17) | |
template< class Iterator1, class Iterator2 > constexpr bool operator==( const move_iterator<Iterator1>& lhs, const move_iterator<Iterator2>& rhs ); | (since C++17) | |
(2) | ||
template< class Iterator1, class Iterator2 > bool operator!=( const move_iterator<Iterator1>& lhs, const move_iterator<Iterator2>& rhs ); | (until C++17) | |
template< class Iterator1, class Iterator2 > constexpr bool operator!=( const move_iterator<Iterator1>& lhs, const move_iterator<Iterator2>& rhs ); | (since C++17) | |
(3) | ||
template< class Iterator1, class Iterator2 > bool operator<( const move_iterator<Iterator1>& lhs, const move_iterator<Iterator2>& rhs ); | (until C++17) | |
template< class Iterator1, class Iterator2 > constexpr bool operator<( const move_iterator<Iterator1>& lhs, const move_iterator<Iterator2>& rhs ); | (since C++17) | |
(4) | ||
template< class Iterator1, class Iterator2 > bool operator<=( const move_iterator<Iterator1>& lhs, const move_iterator<Iterator2>& rhs ); | (until C++17) | |
template< class Iterator1, class Iterator2 > constexpr bool operator<=( const move_iterator<Iterator1>& lhs, const move_iterator<Iterator2>& rhs ); | (since C++17) | |
(5) | ||
template< class Iterator1, class Iterator2 > bool operator>( const move_iterator<Iterator1>& lhs, const move_iterator<Iterator2>& rhs ); | (until C++17) | |
template< class Iterator1, class Iterator2 > constexpr bool operator>( const move_iterator<Iterator1>& lhs, const move_iterator<Iterator2>& rhs ); | (since C++17) | |
(6) | ||
template< class Iterator1, class Iterator2 > bool operator>=( const move_iterator<Iterator1>& lhs, const move_iterator<Iterator2>& rhs ); | (until C++17) | |
template< class Iterator1, class Iterator2 > constexpr bool operator>=( const move_iterator<Iterator1>& lhs, const move_iterator<Iterator2>& rhs ); | (since C++17) |
Compares the underlying iterators.
lhs, rhs | - | iterator adaptors to compare |
lhs.base() == rhs.base()
lhs.base() != rhs.base()
lhs.base() < rhs.base()
lhs.base() <= rhs.base()
lhs.base() > rhs.base()
lhs.base() >= rhs.base()
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
http://en.cppreference.com/w/cpp/iterator/move_iterator/operator_cmp