std::multimap<Key,T,Compare,Allocator>::insert_range

来自cppreference.com
< cpp‎ | container‎ | multimap

 
 
 
 
template< container-compatible-range<value_type> R >
void insert_range( R&& rg );
(C++23 起)

插入范围 rg 中每个元素的副本。

范围 rg 中的每个元素均恰好背解引用一次。 如果 rg 与容器重叠,则其行为未定义。

没有迭代器或引用会失效。

参数

rg - 容器兼容范围,即其元素可以转换为 Tinput_range
类型要求
-
value_type 必须为从 *ranges::begin(rg)multimap 可就位构造 (EmplaceConstructible) 。否则,其行为未定义。

返回值

(无)

复杂度

N·log(a.size() + N),其中 Nranges::distance(rg)

注解

功能特性测试 标准 功能特性
__cpp_lib_containers_ranges 202202L (C++23) 按范围构造和插入

示例

#include <iostream>
#include <map>
#include <utility>
 
void println(auto, auto const& container)
{
    for (const auto& [key, value] : container)
        std::cout << '{' << key << ',' << value << '}' << ' ';
    std::cout << '\n';
}
 
int main()
{
    auto container = std::multimap{std::pair{1, 11}, {3, 33}, {2, 22}, {4, 44}};
    const auto rg = {std::pair{-1, -11}, {3, -33}, {-2, -22}};
#ifdef __cpp_lib_containers_ranges
    container.insert_range(rg);
#else
    container.insert(rg.begin(), rg.end());
#endif
    println("{}", container);
}

输出:

{-2,-22} {-1,-11} {1,11} {2,22} {3,33} {3,-33} {4,44}

参阅

插入元素或节点 (C++17 起)
(公开成员函数)