|  | Home | Libraries | People | FAQ | More | 
Insert elements.
void insert( std::initializer_list< std::pair< string_view, value_ref >> init);
The elements in the initializer list whose keys are unique are inserted one at a time, in order. If there are elements with duplicate keys; that is, if multiple elements in the range have keys that compare equal, only the first equivalent element will be inserted.
            Linear in init.size().
          
            Strong guarantee. Calls to memory_resource::allocate
            may throw.
          
| Name | Description | 
|---|---|
| 
                       | The initializer list to insert |