命名空间
变体
操作

iter_swap(ranges::chunk_view::inner-iterator)

来自 cppreference.com
 
 
范围库
范围适配器
 
std::ranges::chunk_view
成员函数
类用于 input_ranges
推导指南
outer-iterator
outer-iterator::value_type
inner-iterator
iter_swap(chunk_view::inner-iterator)
 
friend constexpr void iter_swap( const /*inner-iterator*/& x,

                                 const /*inner-iterator*/& y )
    noexcept(noexcept(ranges::iter_swap(*x.parent_->current_,
                                        *y.parent_->current_)))

    requires std::indirectly_swappable<ranges::iterator_t<V>>;
(自 C++23 起)

ranges::iter_swap 应用于底层缓存的迭代器。

parent_ 为指向封闭 chunk_view 的底层指针,并且 *i.parent_->current_ 表示类型为 ranges::iterator_t<V> 的底层缓存迭代器。

等效于:ranges::iter_swap(*x.parent_->current_, *y.parent_->current_);.

此函数对普通的 非限定限定查找 不可見,并且仅在 依赖于参数的查找 中,当 chunk_view::inner-iterator 是参数的关联类时才可找到。

[编辑] 参数

x, y - 指向要交换的元素的迭代器

[编辑] 返回值

(无)

[编辑] 另请参阅

(C++20)
交换两个可解引用的对象引用的值
(自定义点对象)[编辑]
交换两个迭代器指向的元素
(函数模板) [编辑]