| empty (1) | explicit map (const key_compare& comp = key_compare(), const allocator_type& alloc = allocator_type()); |
|---|---|
| range (2) | template <class InputIterator> map (InputIterator first, InputIterator last, const key_compare& comp = key_compare(), const allocator_type& alloc = allocator_type()); |
| copy (3) | map (const map& x); |
| empty (1) | explicit map (const key_compare& comp = key_compare(), const allocator_type& alloc = allocator_type()); explicit map (const allocator_type& alloc); |
|---|---|
| range (2) | template <class InputIterator> map (InputIterator first, InputIterator last, const key_compare& comp = key_compare(), const allocator_type& = allocator_type()); |
| copy (3) | map (const map& x); map (const map& x, const allocator_type& alloc); |
| move (4) | map (map&& x); map (map&& x, const allocator_type& alloc); |
| initializer list (5) | map (initializer_list<value_type> il, const key_compare& comp = key_compare(), const allocator_type& alloc = allocator_type()); |
| empty (1) | map(); explicit map (const key_compare& comp, const allocator_type& alloc = allocator_type()); explicit map (const allocator_type& alloc); |
|---|---|
| range (2) | template <class InputIterator> map (InputIterator first, InputIterator last, const key_compare& comp = key_compare(), const allocator_type& = allocator_type()); template <class InputIterator> map (InputIterator first, InputIterator last, const allocator_type& = allocator_type()); |
| copy (3) | map (const map& x); map (const map& x, const allocator_type& alloc); |
| move (4) | map (map&& x); map (map&& x, const allocator_type& alloc); |
| initializer list (5) | map (initializer_list<value_type> il, const key_compare& comp = key_compare(), const allocator_type& alloc = allocator_type()); map (initializer_list<value_type> il, const allocator_type& alloc = allocator_type()); |
|
|