operator==,<=>(ranges::enumerate_view::iterator)
来自 cppreference.com
< cpp | ranges | enumerate view | iterator
friend constexpr bool operator==( const /*iterator*/& x, const /*iterator*/& y ) noexcept; |
(1) | (自 C++23) |
friend constexpr std::strong_ordering operator<=>( const /*iterator*/& x, const /*iterator*/& y ) noexcept; |
(2) | (自 C++23) |
1) 等价于 return x.pos_ == y.pos_;.
2) 等价于 return x.pos_ <=> y.pos_;.
这些函数对普通的 非限定 或 限定查找 不可見,并且只有在 std::ranges::enumerate_view::iterator<Const>
是参数的关联类时,才能通过 参数相关查找 找到它们。
<
、<=
、>
、>=
和 !=
运算符分别从 operator<=> 和 operator== 合成。
[编辑] 参数
x, y | - | 要比较的迭代器 |
[编辑] 返回值
比较结果。
[编辑] 另请参见
(C++23) |
比较从 enumerate_view::begin 返回的迭代器和哨兵。 (函数) |