Create an unordered multimap from range with bucket count and allocator.
Declared in <bslstl_unorderedmultimap.h>
template<class RANGE>
unordered_multimap(
std::from_range_t tag,
RANGE&& range,
size_type initialNumBuckets,
ALLOCATOR const& basicAllocator);
Same as the preceding overload.
| Name | Description |
|---|---|
| tag | disambiguation tag for range construction |
| range | input range of key/value pairs to insert |
| initialNumBuckets | minimum initial number of buckets |
| basicAllocator | allocator used to supply memory |