Create a multimap from range using basicAllocator.
Declared in <bslstl_multimap.h>
template<class RANGE>
multimap(
std::from_range_t tag,
RANGE&& range,
ALLOCATOR const& basicAllocator);
Create a multimap having the (value_type) values obtained from the specified range, using the specified basicAllocator to supply memory.
| Name | Description |
|---|---|
| tag | disambiguation tag for range construction |
| range | input range of elements to insert |
| basicAllocator | allocator used to supply memory |