operator<,<=,>,>=(std::move_iterator)
来自cppreference.com
< cpp | iterator | move iterator
(1) | ||
template< class Iterator1, class Iterator2 > bool operator==( const move_iterator<Iterator1>& lhs, |
(C++17 前) | |
template< class Iterator1, class Iterator2 > constexpr bool operator==( const move_iterator<Iterator1>& lhs, |
(C++17 起) | |
(2) | ||
template< class Iterator1, class Iterator2 > bool operator!=( const move_iterator<Iterator1>& lhs, |
(C++17 前) | |
template< class Iterator1, class Iterator2 > constexpr bool operator!=( const move_iterator<Iterator1>& lhs, |
(C++17 起) | |
(3) | ||
template< class Iterator1, class Iterator2 > bool operator<( const move_iterator<Iterator1>& lhs, |
(C++17 前) | |
template< class Iterator1, class Iterator2 > constexpr bool operator<( const move_iterator<Iterator1>& lhs, |
(C++17 起) | |
(4) | ||
template< class Iterator1, class Iterator2 > bool operator<=( const move_iterator<Iterator1>& lhs, |
(C++17 前) | |
template< class Iterator1, class Iterator2 > constexpr bool operator<=( const move_iterator<Iterator1>& lhs, |
(C++17 起) | |
(5) | ||
template< class Iterator1, class Iterator2 > bool operator>( const move_iterator<Iterator1>& lhs, |
(C++17 前) | |
template< class Iterator1, class Iterator2 > constexpr bool operator>( const move_iterator<Iterator1>& lhs, |
(C++17 起) | |
(6) | ||
template< class Iterator1, class Iterator2 > bool operator>=( const move_iterator<Iterator1>& lhs, |
(C++17 前) | |
template< class Iterator1, class Iterator2 > constexpr bool operator>=( const move_iterator<Iterator1>& lhs, |
(C++17 起) | |
比较底层迭代器。
参数
lhs, rhs | - | 要比较的迭代器适配器 |
返回值
1) lhs.base() == rhs.base()
2) lhs.base() != rhs.base()
3) lhs.base() < rhs.base()
4) lhs.base() <= rhs.base()
5) lhs.base() > rhs.base()
6) lhs.base() >= rhs.base()
示例
本节未完成 原因:暂无示例 |