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 返回的迭代器 (函数) |