C++14; |
empty (1) |
unordered_multimap();
explicit unordered_multimap ( size_type n,
const hasher& hf = hasher(),
const key_equal& eql = key_equal(),
const allocator_type& alloc = allocator_type() );
explicit unordered_multimap ( const allocator_type& alloc );
unordered_multimap ( size_type n, const allocator_type& alloc );
unordered_multimap ( size_type n, const hasher& hf, const allocator_type& alloc ); |
|
range (2) |
template <class InputIterator>
unordered_multimap ( InputIterator first, InputIterator last,
size_type n = /* see below */,
const hasher& hf = hasher(),
const key_equal& eql = key_equal(),
const allocator_type& alloc = allocator_type() );
template <class InputIterator>
unordered_multimap ( InputIterator first, InputIterator last, size_type n,
const allocator_type& alloc );
template <class InputIterator>
unordered_multimap ( InputIterator first, InputIterator last, size_type n,
const hasher& hf, const allocator_type& alloc ); |
|
initializer list (5) |
unordered_multimap ( initializer_list<value_type> il,
size_type n = /* see below */,
const hasher& hf = hasher(),
const key_equal& eql = key_equal(),
const allocator_type& alloc = allocator_type() );
unordered_multimap ( initializer_list<value_type> il, size_type n,
const allocator_type& alloc );
unordered_multimap ( initializer_list<value_type> il, size_type n,
const hasher& hf, const allocator_type& alloc ); |