命名空间
变体
操作

std::flat_set<Key,Compare,KeyContainer>::swap

来自 cppreference.com
< cpp‎ | 容器‎ | 扁平集合
 
 
 
 
void swap( flat_set& other ) noexcept;
(自 C++23 起)
交换容器适配器的内容与 other 的内容。实际上调用
ranges::swap(compare, other.compare);
ranges::swap(c, other.c);

内容

[编辑] 参数

other - 容器适配器,用于交换内容

[编辑] 返回值

(无)

[编辑] 异常

(无)

[编辑] 复杂度

与底层容器相同(通常是常数)。

[编辑] 示例

[编辑] 参见

专门化了 std::swap 算法
(函数模板) [编辑]