Reserve capacity for at least numElements without rehashing.
Synopsis
Declared in <bslstl_unorderedmultiset.h>
void
reserve(size_type numElements);
Description
Increase the number of buckets of this unordered multiset to a quantity such that the ratio between the specified numElements and this quantity does not exceed max_load_factor. Note that this guarantees that, after the reserve, elements can be inserted to grow the container to size() == numElements without rehashing. Also note that memory allocations may still occur when growing the container to size() == numElements. Also note that this operation has no effect if numElements <= size().
Parameters
Name |
Description |
numElements |
expected number of elements to support |
Created with MrDocs