std::flat_multiset<Key,Compare,KeyContainer>::replace
来自 cppreference.com
< cpp | container | flat multiset
void replace( container_type&& cont ); |
(自 C++23 起) | |
替换底层容器 c
。等效于: c = std::move(cont);.
cont 的元素必须按照 compare
排序。否则,行为未定义。
内容 |
[编辑] 参数
cont | - | 类型为 KeyContainer 的排序容器,其内容将被移动到 *this |
[编辑] 返回值
(无)
[编辑] 复杂度
等于应用于适配容器的 std::move 的复杂度。
[编辑] 示例
运行此代码
#include <algorithm> #include <cassert> #include <flat_set> #include <print> #include <vector> int main() { std::vector<int> keys{1, 2, 3}; assert(std::ranges::is_sorted(keys)); std::flat_multiset<int> set; assert(set.empty()); set.replace(keys); assert(set.size() == 3); assert(keys.empty()); std::println("{}", set); // set.keys() }
输出
[1, 2, 3]
[编辑] 参见
提取底层容器 (公共成员函数) |