GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
std::unordered_multimap::rehash(3) C++ Standard Libary std::unordered_multimap::rehash(3)

std::unordered_multimap::rehash - std::unordered_multimap::rehash


void rehash( size_type count ); (since C++11)


Sets the number of buckets to count and rehashes the container, i.e. puts the
elements into appropriate buckets considering that total number of buckets has
changed. If the new number of buckets makes load factor more than maximum load
factor (count < size() / max_load_factor()), then the new number of buckets is at
least size() / max_load_factor().


count - new number of buckets


(none)


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


rehash(0) may be used to force an unconditional rehash, such as after suspension of
automatic rehashing by temporarily increasing max_load_factor().


reserve reserves space for at least the specified number of elements and regenerates
(C++11) the hash table
(public member function)

2022.07.31 http://cppreference.com

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.