命名空间
变体
操作

std::basic_string<CharT,Traits,Allocator>::insert_range

来自 cppreference.com
< cpp‎ | string‎ | basic string
 
 
 
std::basic_string
成员函数
元素访问
迭代器
容量
修改器
basic_string::insert_range
(C++23)
搜索
操作
常量
非成员函数
I/O
比较
(直到 C++20)(直到 C++20)(直到 C++20)(直到 C++20)(直到 C++20)(C++20)
数值转换
(C++11)(C++11)(C++11)
(C++11)(C++11)
(C++11)(C++11)(C++11)
(C++11)
(C++11)
字面量
辅助类
推导指南 (C++17)

 
template< container-compatible-range<CharT> R >
constexpr iterator insert_range( const_iterator pos, R&& rg );
(自 C++23 起)

在由 pos 指示的元素(如果有)之前插入来自范围 rg 的字符。

等同于

return insert(pos - begin(),
    std::basic_string(
        std::from_range,
        std​::​forward<R>(rg),
        get_allocator())
);

如果 pos 不是 *this 上的有效迭代器,则行为未定义。

内容

[编辑] 参数

pos - 将插入字符之前的迭代器
rg - 一个 容器兼容范围

[编辑] 返回值

一个引用第一个插入字符的迭代器,或者如果 rg 为空,则为 pos

[编辑] 复杂度

rg 的大小线性相关。

[编辑] 异常

如果 std::allocator_traits<Allocator>::allocate 抛出异常,则重新抛出异常。

如果操作会导致 size() > max_size(),则抛出 std::length_error

如果由于任何原因抛出异常,则此函数没有效果(强异常安全保证)。

[编辑] 备注

功能测试 Std 功能
__cpp_lib_containers_ranges 202202L (C++23) 接受 容器兼容范围 的成员函数

[编辑] 示例

#include <cassert>
#include <iterator>
#include <string>
 
int main()
{
    const auto source = {'l', 'i', 'b', '_'};
    std::string target{"__cpp_containers_ranges"};
    //                        ^insertion will occur
    //                         before this position
 
    const auto pos = target.find("container");
    assert(pos != target.npos);
    auto iter = std::next(target.begin(), pos);
 
#ifdef __cpp_lib_containers_ranges
    target.insert_range(iter, source);
#else
    target.insert(iter, source.begin(), source.end());
#endif
 
    assert(target == "__cpp_lib_containers_ranges");
    //                      ^^^^
}

[编辑] 参见

插入字符
(公共成员函数) [编辑]