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::reserve(3) C++ Standard Libary std::unordered_multimap::reserve(3)

std::unordered_multimap::reserve - std::unordered_multimap::reserve


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


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 rehash(std::ceil(count / max_load_factor())).


count - new capacity of the container


(none)


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


rehash reserves at least the specified number of buckets and regenerates the hash
(C++11) 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.