std::list<T,Allocator>::assign_range
来自 cppreference.com
template< container-compatible-range<T> R > void assign_range( R&& rg ); |
(自 C++23 起) | |
将容器中的元素替换为 rg 中每个元素的副本。
所有迭代器(包括 end()
迭代器)和对元素的所有引用都将失效。
范围内 rg 的每个迭代器都只解引用一次。
如果 rg 与容器重叠,则行为未定义。
内容 |
[编辑] 参数
rg | - | 一个 input_range ,其引用类型可转换为容器的元素类型 |
类型要求 | ||
-std::assignable_from<T&, ranges::range_reference_t<R>> 必须建模。否则,程序格式错误。 | ||
-T 必须是 EmplaceConstructible,从 *ranges::begin(rg) 到容器。否则,行为未定义。 |
[编辑] 返回值
(无)
注释
功能测试 宏 | 值 | Std | 功能 |
---|---|---|---|
__cpp_lib_containers_ranges |
202202L | (C++23) | 范围感知 构造和插入 |
[编辑] 示例
运行此代码
#include <algorithm> #include <cassert> #include <list> #include <vector> int main() { const auto source = std::vector{2, 7, 1}; auto destination = std::list{3, 1, 4}; #ifdef __cpp_lib_containers_ranges destination.assign_range(source); #else destination.assign(source.cbegin(), source.cend()); #endif assert(std::ranges::equal(source, destination)); }
[编辑] 参见
(C++23) |
插入一系列元素 (公有成员函数) |
(C++23) |
在开头添加一系列元素 (公有成员函数) |
(C++23) |
在末尾添加一系列元素 (公有成员函数) |
将值分配给容器 (公有成员函数) | |
将值分配给容器 (公有成员函数) |