Create an unordered multimap from values with bucket count and allocator.
Declared in <bslstl_unorderedmultimap.h>
template<class = void>
requires bsl::IsStdAllocator_v<ALLOCATOR>
unordered_multimap(
std::initializer_list<value_type> values,
size_type initialNumBuckets,
ALLOCATOR const& basicAllocator);
| Name | Description |
|---|---|
| values | initializer list of elements to insert |
| initialNumBuckets | minimum initial number of buckets |
| basicAllocator | allocator used to supply memory |