std::list<T,Allocator>::append_range
来自 cppreference.com
template< container-compatible-range<T> R > void append_range( R&& rg ); |
(自 C++23) | |
在 end()
之前,以非反转顺序插入来自范围 rg 的元素的副本。
没有迭代器或引用失效。
在 rg 中的每个迭代器都只被解引用一次。
内容 |
[编辑] 参数
rg | - | 一个 容器兼容范围,即一个 输入范围 ,其元素可转换为 T |
类型要求 | ||
-T 必须是 EmplaceConstructible 到 list 中,来自 *ranges::begin(rg)。否则,行为未定义。 |
[编辑] 返回值
(无)
[编辑] 复杂度
对 rg 的大小为线性。T
的构造函数调用的次数恰好等于 std::ranges::size(rg))。
[编辑] 异常
如果由于任何原因抛出异常,此函数将没有效果 (强异常安全保证)。
备注
功能测试 宏 | 值 | Std | 功能 |
---|---|---|---|
__cpp_lib_containers_ranges |
202202L | (C++23) | 范围感知 构造和插入 |
[编辑] 示例
运行此代码
#include <cassert> #include <list> #include <vector> int main() { auto head = std::list{1, 2, 3, 4}; const auto tail = std::vector{-5, -6, -7}; #ifdef __cpp_lib_containers_ranges head.append_range(tail); #else head.insert(head.end(), tail.cbegin(), tail.cend()); #endif assert((head == std::list{1, 2, 3, 4, -5, -6, -7})); }
[编辑] 参见
(C++23) |
将范围内的元素添加到开头 (公有成员函数) |
(C++23) |
插入范围内的元素 (公有成员函数) |
将元素添加到末尾 (公有成员函数) | |
(C++11) |
在末尾就地构造元素 (公有成员函数) |