Create an empty unordered multimap with the specified options.
Declared in <bslstl_unorderedmultimap.h>
explicit
unordered_multimap(
size_type initialNumBuckets,
HASH const& hashFunction = HASH(),
EQUAL const& keyEqual = EQUAL(),
ALLOCATOR const& basicAllocator = ALLOCATOR());
| Name | Description |
|---|---|
| initialNumBuckets | minimum initial number of buckets |
| hashFunction | hash function for keys |
| keyEqual | key-equality functor |
| basicAllocator | allocator used to supply memory |