empty (1) | explicit unordered_map ( size_type n = /* see below */, const hasher& hf = hasher(), const key_equal& eql = key_equal(), const allocator_type& alloc = allocator_type() ); explicit unordered_map ( const allocator_type& alloc ); |
---|---|
range (2) | template <class InputIterator> unordered_map ( 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() ); |
copy (3) | unordered_map ( const unordered_map& ump ); unordered_map ( const unordered_map& ump, const allocator_type& alloc ); |
move (4) | unordered_map ( unordered_map&& ump ); unordered_map ( unordered_map&& ump, const allocator_type& alloc ); |
initializer list (5) | unordered_map ( 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() ); |
empty (1) | unordered_map(); explicit unordered_map ( size_type n, const hasher& hf = hasher(), const key_equal& eql = key_equal(), const allocator_type& alloc = allocator_type() ); explicit unordered_map ( const allocator_type& alloc ); unordered_map ( size_type n, const allocator_type& alloc ); unordered_map ( size_type n, const hasher& hf, const allocator_type& alloc ); |
---|---|
range (2) | template <class InputIterator> unordered_map ( 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_map ( InputIterator first, InputIterator last, size_type n, const allocator_type& alloc ); template <class InputIterator> unordered_map ( InputIterator first, InputIterator last, size_type n, const hasher& hf, const allocator_type& alloc ); |
copy (3) | unordered_map ( const unordered_map& ump ); unordered_map ( const unordered_map& ump, const allocator_type& alloc ); |
move (4) | unordered_map ( unordered_map&& ump ); unordered_map ( unordered_map&& ump, const allocator_type& alloc ); |
initializer list (5) | unordered_map ( 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_map ( initializer_list<value_type> il, size_type n, const allocator_type& alloc ); unordered_map ( initializer_list<value_type> il, size_type n, const hasher& hf, const allocator_type& alloc ); |
|
|
sixth contains: apple:red lemon:yellow orange:orange strawberry:red |