std::unordered_multimap::reserve

From Cppreference

Jump to: navigation, search
void reserve( size_type count );
(C++11 feature)

Sets the number of buckets to the number needed to accomodate at least count elements without exceeding maximum load factor and rehashes the container, i.e. puts the elements into appropriate buckets considering that total number of buckets has changed. Effectively calls {{cpp|rehash(std::ceil(count / max_load_factor())).

Contents

[edit] Parameters

count - new capacity of the container

[edit] Return value

(none)

[edit] Complexity

average case linear in the size of the container, worst case quadratic.

[edit] See also

rehash
reserves at least the specified number of buckets.
This regenerates the hash table.
(public member function)