operator==,!=,<,<=,>,>=,<=>(std::move_iterator)
来自 cppreference.cn
< cpp | iterator | move iterator
定义于头文件 <iterator> |
||
template< class Iter1, class Iter2 > bool operator==( const std::move_iterator<Iter1>& lhs, |
(1) | (constexpr 从 C++17 起) |
template< class Iter1, class Iter2 > bool operator!=( const std::move_iterator<Iter1>& lhs, |
(2) | (constexpr 从 C++17 起) (直到 C++20) |
template< class Iter1, class Iter2 > bool operator< ( const std::move_iterator<Iter1>& lhs, |
(3) | (constexpr 从 C++17 起) |
template< class Iter1, class Iter2 > bool operator<=( const std::move_iterator<Iter1>& lhs, |
(4) | (constexpr 从 C++17 起) |
template< class Iter1, class Iter2 > bool operator> ( const std::move_iterator<Iter1>& lhs, |
(5) | (constexpr 从 C++17 起) |
template< class Iter1, class Iter2 > bool operator>=( const std::move_iterator<Iter1>& lhs, |
(6) | (constexpr 从 C++17 起) |
template< class Iter1, std::three_way_comparable_with<Iter1> Iter2 > constexpr std::compare_three_way_result_t<Iter1, Iter2> |
(7) | (自 C++20 起) |
比较 lhs 和 rhs 的底层迭代器。
1) 仅当 lhs.base() == rhs.base() 形式良好且可转换为 bool 时,此重载才参与重载决议。
3-6) 仅当 lhs.base() < rhs.base() 形式良好且可转换为 bool 时,这些重载才参与重载决议。
|
(自 C++20 起) |
内容 |
[edit] 参数
lhs, rhs | - | 要比较的迭代器适配器 |
[edit] 返回值
1) lhs.base() == rhs.base()
2) !(lhs == rhs)
3) lhs.base() < rhs.base()
4) !(rhs < lhs)
5) rhs < lhs
6) !(lhs < rhs)
7) lhs.base() <=> rhs.base()
[edit] 示例
运行此代码
#include <cassert> #include <iterator> int main() { int a[]{9, 8, 7, 6}; // │ └───── x, y // └──────── z // “x” and “y” are equal, but “x” is greater than “z” std::move_iterator<int*> x{std::end(a) - 1}, y{std::end(a) - 1}, z{std::end(a) - 2}; // two-way comparisons assert( x == y ); assert(!(x != y)); assert(!(x < y)); assert( x <= y ); assert(!(x == z)); assert( x != z ); assert(!(x < z)); assert(!(x <= z)); // three-way comparisons assert( x <=> y == 0 ); assert(!(x <=> y < 0)); assert(!(x <=> y > 0)); assert(!(x <=> z == 0)); assert(!(x <=> z < 0)); assert( x <=> z > 0 ); }
[edit] 参见
比较底层迭代器和底层哨兵 (函数模板) |