Create an unordered multiset from range with hash and allocator.
Declared in <bslstl_unorderedmultiset.h>
template<class RANGE>
unordered_multiset(
std::from_range_t tag,
RANGE&& range,
size_type initialNumBuckets,
HASH const& hashFunction,
ALLOCATOR const& basicAllocator);
| Name | Description |
|---|---|
| tag | disambiguation tag selecting the range constructor |
| range | input range of elements to insert |
| initialNumBuckets | the initial number of buckets |
| hashFunction | the hash function |
| basicAllocator | the allocator used to supply memory |