...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
Construct from initializer-list.
object( std::initializer_list< std::pair< string_view, value_ref >> init, std::size_t min_capacity, storage_ptr sp = {});
Storage for at least min_capacity
elements is reserved, and then the object is constructed with a copy
of the values in the initializer-list in order, using the specified memory
resource. 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. |
|
The minimum number of elements for which capacity is guaranteed
without a subsequent reallocation. Upon construction, |
|
A pointer to the |