命名空间
变体
操作

iter_swap(std::move_iterator)

来自 cppreference.com
 
 
迭代器库
迭代器概念
迭代器原语
算法概念和实用程序
间接可调用概念
通用算法需求
(C++20)
(C++20)
(C++20)
实用程序
(C++20)
迭代器适配器
范围访问
(C++11)(C++14)
(C++14)(C++14)  
(C++11)(C++14)
(C++14)(C++14)  
(C++17)(C++20)
(C++17)
(C++17)
 
 
template< std::indirectly_swappable<Iter> Iter2 >

    friend constexpr void
        iter_swap( const move_iterator& x, const std::move_iterator<Iter2>& y )

            noexcept(/*见下文*/);
(自 C++20 起)

交换两个基础迭代器指向的对象。函数体等效于 ranges::iter_swap(x.base(), y.base());.

此函数模板对普通的非限定限定查找不可见,只有当 std::move_iterator<Iter> 是参数的关联类时,才能通过参数相关查找找到。

内容

[编辑] 参数

x, y - 要交换的元素的移动迭代器

[编辑] 返回值

(无)

[编辑] 复杂度

常数。

[编辑] 异常

noexcept 规范:  
noexcept(noexcept(ranges::iter_swap(x.base(), y.base())))

[编辑] 示例

#include <iostream>
#include <iterator>
#include <string>
#include <vector>
 
int main()
{
    std::vector<std::string> p{"AA", "EE"},
                             q{"ⱯⱯ", "ƎƎ"};
 
    std::move_iterator<std::vector<std::string>::iterator>
        x = std::make_move_iterator(p.begin()),
        y = std::make_move_iterator(q.begin());
 
    std::cout << *x << ' ' << *y << '\n';
 
    iter_swap(x, y); // ADL
 
    std::cout << *x << ' ' << *y << '\n';
}

输出

AA ⱯⱯ
ⱯⱯ AA

[编辑] 另请参阅

交换两个对象的值
(函数模板) [编辑]
交换两个元素范围
(函数模板) [编辑]
交换两个迭代器指向的元素
(函数模板) [编辑]
(C++20)
交换两个可取消引用的对象引用的值
(自定义点对象)[编辑]
(C++20)
交换两个调整后的基础迭代器指向的对象
(函数模板) [编辑]