operator==,!=,<,<=,>,>=,<=>(std::move_iterator)

来自cppreference.com

 
 
迭代器库
迭代器概念
迭代器原语
算法概念与工具
间接可调用概念
常用算法要求
工具
迭代器适配器
流迭代器
迭代器定制点
迭代器操作
(C++11)
(C++11)
范围访问
(C++11)(C++14)
(C++11)(C++14)
(C++17)(C++20)
(C++14)(C++14)
(C++14)(C++14)
(C++17)
(C++17)
 
 
(1)
template< class Iterator1, class Iterator2 >

bool operator==( const std::move_iterator<Iterator1>& lhs,

                 const std::move_iterator<Iterator2>& rhs );
(C++17 前)
template< class Iterator1, class Iterator2 >

constexpr bool operator==( const std::move_iterator<Iterator1>& lhs,

                           const std::move_iterator<Iterator2>& rhs );
(C++17 起)
(2)
template< class Iterator1, class Iterator2 >

bool operator!=( const std::move_iterator<Iterator1>& lhs,

                 const std::move_iterator<Iterator2>& rhs );
(C++17 前)
template< class Iterator1, class Iterator2 >

constexpr bool operator!=( const std::move_iterator<Iterator1>& lhs,

                           const std::move_iterator<Iterator2>& rhs );
(C++17 起)
(C++20 前)
(3)
template< class Iterator1, class Iterator2 >

bool operator<( const std::move_iterator<Iterator1>& lhs,

                const std::move_iterator<Iterator2>& rhs );
(C++17 前)
template< class Iterator1, class Iterator2 >

constexpr bool operator<( const std::move_iterator<Iterator1>& lhs,

                          const std::move_iterator<Iterator2>& rhs );
(C++17 起)
(4)
template< class Iterator1, class Iterator2 >

bool operator<=( const std::move_iterator<Iterator1>& lhs,

                 const std::move_iterator<Iterator2>& rhs );
(C++17 前)
template< class Iterator1, class Iterator2 >

constexpr bool operator<=( const std::move_iterator<Iterator1>& lhs,

                           const std::move_iterator<Iterator2>& rhs );
(C++17 起)
(5)
template< class Iterator1, class Iterator2 >

bool operator>( const std::move_iterator<Iterator1>& lhs,

                const std::move_iterator<Iterator2>& rhs );
(C++17 前)
template< class Iterator1, class Iterator2 >

constexpr bool operator>( const std::move_iterator<Iterator1>& lhs,

                          const std::move_iterator<Iterator2>& rhs );
(C++17 起)
(6)
template< class Iterator1, class Iterator2 >

bool operator>=( const std::move_iterator<Iterator1>& lhs,

                 const std::move_iterator<Iterator2>& rhs );
(C++17 前)
template< class Iterator1, class Iterator2 >

constexpr bool operator>=( const std::move_iterator<Iterator1>& lhs,

                           const std::move_iterator<Iterator2>& rhs );
(C++17 起)
template<class Iterator1, std::three_way_comparable_with<Iterator1> Iterator2>

constexpr std::compare_three_way_result_t<Iterator1, Iterator2>
    operator<=>( const std::move_iterator<Iterator1>& x,

                 const std::move_iterator<Iterator2>& y );
(7) (C++20 起)

比较底层迭代器。

(1-6) 只有在底层比较表达式(见后述)为良构且可转换到 bool 时才会参与重载决议。

!= 运算符从 == 运算符合成

(C++20 起)

参数

lhs, rhs - 要比较的迭代器适配器

返回值

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()

示例

#include <compare>
#include <iostream>
#include <iterator>
 
int main()
{
    int a[]{9, 8, 7, 6};
    //            │  └───── x, y
    //            └──────── z
 
    std::move_iterator<int*>
        x {std::end(a) - 1},
        y {std::end(a) - 1},
        z {std::end(a) - 2};
 
    std::cout
        << std::boolalpha
        << "*x == " << *x << '\n' // 6
        << "*y == " << *y << '\n' // 6
        << "*z == " << *z << '\n' // 7
        << "x == y ? " << (x == y) << '\n' // true
        << "x != y ? " << (x != y) << '\n' // false
        << "x <  y ? " << (x <  y) << '\n' // false
        << "x <= y ? " << (x <= y) << '\n' // true
        << "x == z ? " << (x == z) << '\n' // false
        << "x != z ? " << (x != z) << '\n' // true
        << "x <  z ? " << (x <  z) << '\n' // false
        << "x <= z ? " << (x <= z) << '\n' // false
        << "x <=> y == 0 ? " << (x <=> y == 0) << '\n' // true
        << "x <=> y <  0 ? " << (x <=> y <  0) << '\n' // false
        << "x <=> y >  0 ? " << (x <=> y >  0) << '\n' // false
        << "x <=> z == 0 ? " << (x <=> z == 0) << '\n' // false
        << "x <=> z <  0 ? " << (x <=> z <  0) << '\n' // true
        << "x <=> z >  0 ? " << (x <=> z >  0) << '\n' // false
        ;
}

输出:

*x == 6
*y == 6
*z == 7
x == y ? true
x != y ? false
x <  y ? false
x <= y ? true
x == z ? false
x != z ? true
x <  z ? false
x <= z ? false
x <=> y == 0 ? true
x <=> y <  0 ? false
x <=> y >  0 ? false
x <=> z == 0 ? false
x <=> z <  0 ? false
x <=> z >  0 ? true