iter_swap(ranges::join_with_view::iterator)
来自 cppreference.com
< cpp | ranges | join with view | iterator
friend constexpr void iter_swap( const /*iterator*/& x, const /*iterator*/& y ) requires std::indirectly_swappable<ranges::iterator_t</*InnerBase*/>, |
(自 C++23 起) | |
将 ranges::iter_swap 应用于内部迭代器,就像通过 std::visit(ranges::iter_swap, x.inner_it_
, y.inner_it_
);.
此函数对普通的 非限定 或 限定查找 不可見,并且只有在 join_with_view::iterator
<Const>
是参数的关联类时,才能通过 参数依赖查找 找到。
[编辑] 参数
x, y | - | 指向要交换的元素的迭代器 |
[编辑] 另请参阅
(C++20) |
交换两个可解引用的对象的引用值 (定制点对象) |
交换两个迭代器指向的元素 (函数模板) |