CppDS.com

C++ 98 11 14 17 20 手册

std::swap(std::tuple)

来自cppreference.com
< cpp‎ | utility‎ | tuple
 
 
工具库
通用工具
日期和时间
函数对象
格式化库 (C++20)
(C++11)
关系运算符 (C++20 中弃用)
整数比较函数
(C++20)
swap 与类型运算
(C++14)
(C++11)
(C++11)
(C++11)
(C++17)
常用词汇类型
(C++11)
(C++17)
(C++17)
(C++17)
(C++17)

初等字符串转换
(C++17)
(C++17)
 
 
template< class... Types >
void swap( tuple<Types...>& lhs, tuple<Types...>& rhs ) noexcept(/* see below */);
(C++11 起)
(C++20 前)
template< class... Types >

constexpr void

    swap( tuple<Types...>& lhs, tuple<Types...>& rhs ) noexcept(/* see below */);
(C++20 起)

交换 lhsrhs 的内容。等价于 lhs.swap(rhs)

此函数不参与重载决议,除非 std::is_swappable_v<Ti> 对来自从 0 到 sizeof...(Types) 的所有 i 为 true

(C++17 起)

参数

lhs, rhs - 要交换内容的 tuple

返回值

(无)

异常

noexcept 规定:  
noexcept(noexcept(lhs.swap(rhs)))

参阅

关闭