Create an unordered multimap from [first, last)] with buckets and allocator.
Declared in <bslstl_unorderedmultimap.h>
template<class INPUT_ITERATOR>
unordered_multimap(
INPUT_ITERATOR first,
INPUT_ITERATOR last,
size_type initialNumBuckets,
ALLOCATOR const& basicAllocator);
| Name | Description |
|---|---|
| first | beginning of the range to copy |
| last | end of the range to copy |
| initialNumBuckets | minimum initial number of buckets |
| basicAllocator | allocator used to supply memory |