operator==(ranges::join_with_view::iterator)
来自cppreference.com
< cpp | ranges | join with view | iterator
friend constexpr bool operator==( const /*iterator*/& x, const /*iterator*/& y ) requires std::is_reference_v<InnerBase> && |
(C++23 起) | |
比较迭代器 x 与 y 是否相等。只有在它们的外部迭代器和内部迭代器分别比较相等时,它们才会比较相等。
此函数对常规的无限定或有限定查找不可见,而只能在 std::ranges::join_with_view::iterator<Const>
为实参的关联类时由实参依赖查找找到。
!=
运算符从 operator==
运算符合成。
参数
x, y | - | 要比较的迭代器 |
返回值
x.outer_it_
== y.outer_it_
&& x.inner_it_
== y.inner_it_
参阅
(C++23) |
比较哨位与 join_with_view::begin 返回的迭代器 (函数) |