Create an empty unordered multimap with the specified options.

Synopsis

Declared in <bslstl_unorderedmultimap.h>

explicit
unordered_multimap(
    size_type initialNumBuckets,
    HASH const& hashFunction = HASH(),
    EQUAL const& keyEqual = EQUAL(),
    ALLOCATOR const& basicAllocator = ALLOCATOR());

Parameters

Name

Description

initialNumBuckets

minimum initial number of buckets

hashFunction

hash function for keys

keyEqual

key‐equality functor

basicAllocator

allocator used to supply memory

Created with MrDocs