std::unordered_multiset<Key,Hash,KeyEqual,Allocator>::reserve

Sets the number of buckets to the number needed to accommodate 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 rehash(std::ceil(count / max_load_factor())).

# Declarations

void reserve( size_type count );

(since C++11)

# Parameters

# Return value

(none)

# See also