10b57cec5SDimitry Andric// -*- C++ -*- 2349cc55cSDimitry Andric//===----------------------------------------------------------------------===// 30b57cec5SDimitry Andric// 40b57cec5SDimitry Andric// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 50b57cec5SDimitry Andric// See https://llvm.org/LICENSE.txt for license information. 60b57cec5SDimitry Andric// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 70b57cec5SDimitry Andric// 80b57cec5SDimitry Andric//===----------------------------------------------------------------------===// 90b57cec5SDimitry Andric 100b57cec5SDimitry Andric#ifndef _LIBCPP_UNORDERED_MAP 110b57cec5SDimitry Andric#define _LIBCPP_UNORDERED_MAP 120b57cec5SDimitry Andric 130b57cec5SDimitry Andric/* 140b57cec5SDimitry Andric 150b57cec5SDimitry Andric unordered_map synopsis 160b57cec5SDimitry Andric 170b57cec5SDimitry Andric#include <initializer_list> 180b57cec5SDimitry Andric 190b57cec5SDimitry Andricnamespace std 200b57cec5SDimitry Andric{ 210b57cec5SDimitry Andric 220b57cec5SDimitry Andrictemplate <class Key, class T, class Hash = hash<Key>, class Pred = equal_to<Key>, 230b57cec5SDimitry Andric class Alloc = allocator<pair<const Key, T>>> 240b57cec5SDimitry Andricclass unordered_map 250b57cec5SDimitry Andric{ 260b57cec5SDimitry Andricpublic: 270b57cec5SDimitry Andric // types 280b57cec5SDimitry Andric typedef Key key_type; 290b57cec5SDimitry Andric typedef T mapped_type; 300b57cec5SDimitry Andric typedef Hash hasher; 310b57cec5SDimitry Andric typedef Pred key_equal; 320b57cec5SDimitry Andric typedef Alloc allocator_type; 330b57cec5SDimitry Andric typedef pair<const key_type, mapped_type> value_type; 340b57cec5SDimitry Andric typedef value_type& reference; 350b57cec5SDimitry Andric typedef const value_type& const_reference; 360b57cec5SDimitry Andric typedef typename allocator_traits<allocator_type>::pointer pointer; 370b57cec5SDimitry Andric typedef typename allocator_traits<allocator_type>::const_pointer const_pointer; 380b57cec5SDimitry Andric typedef typename allocator_traits<allocator_type>::size_type size_type; 390b57cec5SDimitry Andric typedef typename allocator_traits<allocator_type>::difference_type difference_type; 400b57cec5SDimitry Andric 410b57cec5SDimitry Andric typedef /unspecified/ iterator; 420b57cec5SDimitry Andric typedef /unspecified/ const_iterator; 430b57cec5SDimitry Andric typedef /unspecified/ local_iterator; 440b57cec5SDimitry Andric typedef /unspecified/ const_local_iterator; 450b57cec5SDimitry Andric 460b57cec5SDimitry Andric typedef unspecified node_type; // C++17 470b57cec5SDimitry Andric typedef INSERT_RETURN_TYPE<iterator, node_type> insert_return_type; // C++17 480b57cec5SDimitry Andric 490b57cec5SDimitry Andric unordered_map() 500b57cec5SDimitry Andric noexcept( 510b57cec5SDimitry Andric is_nothrow_default_constructible<hasher>::value && 520b57cec5SDimitry Andric is_nothrow_default_constructible<key_equal>::value && 530b57cec5SDimitry Andric is_nothrow_default_constructible<allocator_type>::value); 540b57cec5SDimitry Andric explicit unordered_map(size_type n, const hasher& hf = hasher(), 550b57cec5SDimitry Andric const key_equal& eql = key_equal(), 560b57cec5SDimitry Andric const allocator_type& a = allocator_type()); 570b57cec5SDimitry Andric template <class InputIterator> 580b57cec5SDimitry Andric unordered_map(InputIterator f, InputIterator l, 590b57cec5SDimitry Andric size_type n = 0, const hasher& hf = hasher(), 600b57cec5SDimitry Andric const key_equal& eql = key_equal(), 610b57cec5SDimitry Andric const allocator_type& a = allocator_type()); 6206c3fb27SDimitry Andric template<container-compatible-range<value_type> R> 6306c3fb27SDimitry Andric unordered_map(from_range_t, R&& rg, size_type n = see below, 6406c3fb27SDimitry Andric const hasher& hf = hasher(), const key_equal& eql = key_equal(), 6506c3fb27SDimitry Andric const allocator_type& a = allocator_type()); // C++23 6606c3fb27SDimitry Andric 670b57cec5SDimitry Andric explicit unordered_map(const allocator_type&); 680b57cec5SDimitry Andric unordered_map(const unordered_map&); 690b57cec5SDimitry Andric unordered_map(const unordered_map&, const Allocator&); 700b57cec5SDimitry Andric unordered_map(unordered_map&&) 710b57cec5SDimitry Andric noexcept( 720b57cec5SDimitry Andric is_nothrow_move_constructible<hasher>::value && 730b57cec5SDimitry Andric is_nothrow_move_constructible<key_equal>::value && 740b57cec5SDimitry Andric is_nothrow_move_constructible<allocator_type>::value); 750b57cec5SDimitry Andric unordered_map(unordered_map&&, const Allocator&); 760b57cec5SDimitry Andric unordered_map(initializer_list<value_type>, size_type n = 0, 770b57cec5SDimitry Andric const hasher& hf = hasher(), const key_equal& eql = key_equal(), 780b57cec5SDimitry Andric const allocator_type& a = allocator_type()); 790b57cec5SDimitry Andric unordered_map(size_type n, const allocator_type& a) 800b57cec5SDimitry Andric : unordered_map(n, hasher(), key_equal(), a) {} // C++14 810b57cec5SDimitry Andric unordered_map(size_type n, const hasher& hf, const allocator_type& a) 820b57cec5SDimitry Andric : unordered_map(n, hf, key_equal(), a) {} // C++14 830b57cec5SDimitry Andric template <class InputIterator> 840b57cec5SDimitry Andric unordered_map(InputIterator f, InputIterator l, size_type n, const allocator_type& a) 850b57cec5SDimitry Andric : unordered_map(f, l, n, hasher(), key_equal(), a) {} // C++14 860b57cec5SDimitry Andric template <class InputIterator> 870b57cec5SDimitry Andric unordered_map(InputIterator f, InputIterator l, size_type n, const hasher& hf, 880b57cec5SDimitry Andric const allocator_type& a) 890b57cec5SDimitry Andric : unordered_map(f, l, n, hf, key_equal(), a) {} // C++14 9006c3fb27SDimitry Andric template<container-compatible-range<value_type> R> 9106c3fb27SDimitry Andric unordered_map(from_range_t, R&& rg, size_type n, const allocator_type& a) 9206c3fb27SDimitry Andric : unordered_map(from_range, std::forward<R>(rg), n, hasher(), key_equal(), a) { } // C++23 9306c3fb27SDimitry Andric template<container-compatible-range<value_type> R> 9406c3fb27SDimitry Andric unordered_map(from_range_t, R&& rg, size_type n, const hasher& hf, const allocator_type& a) 9506c3fb27SDimitry Andric : unordered_map(from_range, std::forward<R>(rg), n, hf, key_equal(), a) { } // C++23 960b57cec5SDimitry Andric unordered_map(initializer_list<value_type> il, size_type n, const allocator_type& a) 970b57cec5SDimitry Andric : unordered_map(il, n, hasher(), key_equal(), a) {} // C++14 980b57cec5SDimitry Andric unordered_map(initializer_list<value_type> il, size_type n, const hasher& hf, 990b57cec5SDimitry Andric const allocator_type& a) 1000b57cec5SDimitry Andric : unordered_map(il, n, hf, key_equal(), a) {} // C++14 1010b57cec5SDimitry Andric ~unordered_map(); 1020b57cec5SDimitry Andric unordered_map& operator=(const unordered_map&); 1030b57cec5SDimitry Andric unordered_map& operator=(unordered_map&&) 1040b57cec5SDimitry Andric noexcept( 1050b57cec5SDimitry Andric allocator_type::propagate_on_container_move_assignment::value && 1060b57cec5SDimitry Andric is_nothrow_move_assignable<allocator_type>::value && 1070b57cec5SDimitry Andric is_nothrow_move_assignable<hasher>::value && 1080b57cec5SDimitry Andric is_nothrow_move_assignable<key_equal>::value); 1090b57cec5SDimitry Andric unordered_map& operator=(initializer_list<value_type>); 1100b57cec5SDimitry Andric 1110b57cec5SDimitry Andric allocator_type get_allocator() const noexcept; 1120b57cec5SDimitry Andric 1130b57cec5SDimitry Andric bool empty() const noexcept; 1140b57cec5SDimitry Andric size_type size() const noexcept; 1150b57cec5SDimitry Andric size_type max_size() const noexcept; 1160b57cec5SDimitry Andric 1170b57cec5SDimitry Andric iterator begin() noexcept; 1180b57cec5SDimitry Andric iterator end() noexcept; 1190b57cec5SDimitry Andric const_iterator begin() const noexcept; 1200b57cec5SDimitry Andric const_iterator end() const noexcept; 1210b57cec5SDimitry Andric const_iterator cbegin() const noexcept; 1220b57cec5SDimitry Andric const_iterator cend() const noexcept; 1230b57cec5SDimitry Andric 1240b57cec5SDimitry Andric template <class... Args> 1250b57cec5SDimitry Andric pair<iterator, bool> emplace(Args&&... args); 1260b57cec5SDimitry Andric template <class... Args> 1270b57cec5SDimitry Andric iterator emplace_hint(const_iterator position, Args&&... args); 1280b57cec5SDimitry Andric pair<iterator, bool> insert(const value_type& obj); 1290b57cec5SDimitry Andric template <class P> 1300b57cec5SDimitry Andric pair<iterator, bool> insert(P&& obj); 1310b57cec5SDimitry Andric iterator insert(const_iterator hint, const value_type& obj); 1320b57cec5SDimitry Andric template <class P> 1330b57cec5SDimitry Andric iterator insert(const_iterator hint, P&& obj); 1340b57cec5SDimitry Andric template <class InputIterator> 1350b57cec5SDimitry Andric void insert(InputIterator first, InputIterator last); 13606c3fb27SDimitry Andric template<container-compatible-range<value_type> R> 13706c3fb27SDimitry Andric void insert_range(R&& rg); // C++23 1380b57cec5SDimitry Andric void insert(initializer_list<value_type>); 1390b57cec5SDimitry Andric 1400b57cec5SDimitry Andric node_type extract(const_iterator position); // C++17 1410b57cec5SDimitry Andric node_type extract(const key_type& x); // C++17 1420b57cec5SDimitry Andric insert_return_type insert(node_type&& nh); // C++17 1430b57cec5SDimitry Andric iterator insert(const_iterator hint, node_type&& nh); // C++17 1440b57cec5SDimitry Andric 1450b57cec5SDimitry Andric template <class... Args> 1460b57cec5SDimitry Andric pair<iterator, bool> try_emplace(const key_type& k, Args&&... args); // C++17 1470b57cec5SDimitry Andric template <class... Args> 1480b57cec5SDimitry Andric pair<iterator, bool> try_emplace(key_type&& k, Args&&... args); // C++17 1490b57cec5SDimitry Andric template <class... Args> 1500b57cec5SDimitry Andric iterator try_emplace(const_iterator hint, const key_type& k, Args&&... args); // C++17 1510b57cec5SDimitry Andric template <class... Args> 1520b57cec5SDimitry Andric iterator try_emplace(const_iterator hint, key_type&& k, Args&&... args); // C++17 1530b57cec5SDimitry Andric template <class M> 1540b57cec5SDimitry Andric pair<iterator, bool> insert_or_assign(const key_type& k, M&& obj); // C++17 1550b57cec5SDimitry Andric template <class M> 1560b57cec5SDimitry Andric pair<iterator, bool> insert_or_assign(key_type&& k, M&& obj); // C++17 1570b57cec5SDimitry Andric template <class M> 1580b57cec5SDimitry Andric iterator insert_or_assign(const_iterator hint, const key_type& k, M&& obj); // C++17 1590b57cec5SDimitry Andric template <class M> 1600b57cec5SDimitry Andric iterator insert_or_assign(const_iterator hint, key_type&& k, M&& obj); // C++17 1610b57cec5SDimitry Andric 1620b57cec5SDimitry Andric iterator erase(const_iterator position); 1630b57cec5SDimitry Andric iterator erase(iterator position); // C++14 1640b57cec5SDimitry Andric size_type erase(const key_type& k); 1650b57cec5SDimitry Andric iterator erase(const_iterator first, const_iterator last); 1660b57cec5SDimitry Andric void clear() noexcept; 1670b57cec5SDimitry Andric 1680b57cec5SDimitry Andric template<class H2, class P2> 1690b57cec5SDimitry Andric void merge(unordered_map<Key, T, H2, P2, Allocator>& source); // C++17 1700b57cec5SDimitry Andric template<class H2, class P2> 1710b57cec5SDimitry Andric void merge(unordered_map<Key, T, H2, P2, Allocator>&& source); // C++17 1720b57cec5SDimitry Andric template<class H2, class P2> 1730b57cec5SDimitry Andric void merge(unordered_multimap<Key, T, H2, P2, Allocator>& source); // C++17 1740b57cec5SDimitry Andric template<class H2, class P2> 1750b57cec5SDimitry Andric void merge(unordered_multimap<Key, T, H2, P2, Allocator>&& source); // C++17 1760b57cec5SDimitry Andric 1770b57cec5SDimitry Andric void swap(unordered_map&) 1780b57cec5SDimitry Andric noexcept( 1790b57cec5SDimitry Andric (!allocator_type::propagate_on_container_swap::value || 1800b57cec5SDimitry Andric __is_nothrow_swappable<allocator_type>::value) && 1810b57cec5SDimitry Andric __is_nothrow_swappable<hasher>::value && 1820b57cec5SDimitry Andric __is_nothrow_swappable<key_equal>::value); 1830b57cec5SDimitry Andric 1840b57cec5SDimitry Andric hasher hash_function() const; 1850b57cec5SDimitry Andric key_equal key_eq() const; 1860b57cec5SDimitry Andric 1870b57cec5SDimitry Andric iterator find(const key_type& k); 1880b57cec5SDimitry Andric const_iterator find(const key_type& k) const; 189e8d8bef9SDimitry Andric template<typename K> 190e8d8bef9SDimitry Andric iterator find(const K& x); // C++20 191e8d8bef9SDimitry Andric template<typename K> 192e8d8bef9SDimitry Andric const_iterator find(const K& x) const; // C++20 1930b57cec5SDimitry Andric size_type count(const key_type& k) const; 194e8d8bef9SDimitry Andric template<typename K> 195e8d8bef9SDimitry Andric size_type count(const K& k) const; // C++20 1960b57cec5SDimitry Andric bool contains(const key_type& k) const; // C++20 197e8d8bef9SDimitry Andric template<typename K> 198e8d8bef9SDimitry Andric bool contains(const K& k) const; // C++20 1990b57cec5SDimitry Andric pair<iterator, iterator> equal_range(const key_type& k); 2000b57cec5SDimitry Andric pair<const_iterator, const_iterator> equal_range(const key_type& k) const; 201e8d8bef9SDimitry Andric template<typename K> 202e8d8bef9SDimitry Andric pair<iterator, iterator> equal_range(const K& k); // C++20 203e8d8bef9SDimitry Andric template<typename K> 204e8d8bef9SDimitry Andric pair<const_iterator, const_iterator> equal_range(const K& k) const; // C++20 2050b57cec5SDimitry Andric 2060b57cec5SDimitry Andric mapped_type& operator[](const key_type& k); 2070b57cec5SDimitry Andric mapped_type& operator[](key_type&& k); 2080b57cec5SDimitry Andric 2090b57cec5SDimitry Andric mapped_type& at(const key_type& k); 2100b57cec5SDimitry Andric const mapped_type& at(const key_type& k) const; 2110b57cec5SDimitry Andric 2120b57cec5SDimitry Andric size_type bucket_count() const noexcept; 2130b57cec5SDimitry Andric size_type max_bucket_count() const noexcept; 2140b57cec5SDimitry Andric 2150b57cec5SDimitry Andric size_type bucket_size(size_type n) const; 2160b57cec5SDimitry Andric size_type bucket(const key_type& k) const; 2170b57cec5SDimitry Andric 2180b57cec5SDimitry Andric local_iterator begin(size_type n); 2190b57cec5SDimitry Andric local_iterator end(size_type n); 2200b57cec5SDimitry Andric const_local_iterator begin(size_type n) const; 2210b57cec5SDimitry Andric const_local_iterator end(size_type n) const; 2220b57cec5SDimitry Andric const_local_iterator cbegin(size_type n) const; 2230b57cec5SDimitry Andric const_local_iterator cend(size_type n) const; 2240b57cec5SDimitry Andric 2250b57cec5SDimitry Andric float load_factor() const noexcept; 2260b57cec5SDimitry Andric float max_load_factor() const noexcept; 2270b57cec5SDimitry Andric void max_load_factor(float z); 2280b57cec5SDimitry Andric void rehash(size_type n); 2290b57cec5SDimitry Andric void reserve(size_type n); 2300b57cec5SDimitry Andric}; 2310b57cec5SDimitry Andric 232349cc55cSDimitry Andrictemplate<class InputIterator, 233349cc55cSDimitry Andric class Hash = hash<iter_key_t<InputIterator>>, class Pred = equal_to<iter_key_t<InputIterator>>, 234349cc55cSDimitry Andric class Allocator = allocator<iter_to_alloc_t<InputIterator>>> 235349cc55cSDimitry Andricunordered_map(InputIterator, InputIterator, typename see below::size_type = see below, 236349cc55cSDimitry Andric Hash = Hash(), Pred = Pred(), Allocator = Allocator()) 237349cc55cSDimitry Andric -> unordered_map<iter_key_t<InputIterator>, iter_value_t<InputIterator>, Hash, Pred, 238349cc55cSDimitry Andric Allocator>; // C++17 239349cc55cSDimitry Andric 24006c3fb27SDimitry Andrictemplate<ranges::input_range R, class Hash = hash<range-key-type<R>>, 24106c3fb27SDimitry Andric class Pred = equal_to<range-key-type<R>>, 24206c3fb27SDimitry Andric class Allocator = allocator<range-to-alloc-type<R>>> 24306c3fb27SDimitry Andric unordered_map(from_range_t, R&&, typename see below::size_type = see below, 24406c3fb27SDimitry Andric Hash = Hash(), Pred = Pred(), Allocator = Allocator()) 24506c3fb27SDimitry Andric -> unordered_map<range-key-type<R>, range-mapped-type<R>, Hash, Pred, Allocator>; // C++23 24606c3fb27SDimitry Andric 247349cc55cSDimitry Andrictemplate<class Key, class T, class Hash = hash<Key>, 248349cc55cSDimitry Andric class Pred = equal_to<Key>, class Allocator = allocator<pair<const Key, T>>> 249349cc55cSDimitry Andricunordered_map(initializer_list<pair<const Key, T>>, typename see below::size_type = see below, 250349cc55cSDimitry Andric Hash = Hash(), Pred = Pred(), Allocator = Allocator()) 251349cc55cSDimitry Andric -> unordered_map<Key, T, Hash, Pred, Allocator>; // C++17 252349cc55cSDimitry Andric 253349cc55cSDimitry Andrictemplate<class InputIterator, class Allocator> 254349cc55cSDimitry Andricunordered_map(InputIterator, InputIterator, typename see below::size_type, Allocator) 255349cc55cSDimitry Andric -> unordered_map<iter_key_t<InputIterator>, iter_val_t<InputIterator>, 256349cc55cSDimitry Andric hash<iter_key_t<InputIterator>>, equal_to<iter_key_t<InputIterator>>, Allocator>; // C++17 257349cc55cSDimitry Andric 258349cc55cSDimitry Andrictemplate<class InputIterator, class Allocator> 259349cc55cSDimitry Andricunordered_map(InputIterator, InputIterator, Allocator) 260349cc55cSDimitry Andric -> unordered_map<iter_key_t<InputIterator>, iter_val_t<InputIterator>, 261349cc55cSDimitry Andric hash<iter_key_t<InputIterator>>, equal_to<iter_key_t<InputIterator>>, Allocator>; // C++17 262349cc55cSDimitry Andric 263349cc55cSDimitry Andrictemplate<class InputIterator, class Hash, class Allocator> 264349cc55cSDimitry Andricunordered_map(InputIterator, InputIterator, typename see below::size_type, Hash, Allocator) 265349cc55cSDimitry Andric -> unordered_map<iter_key_t<InputIterator>, iter_val_t<InputIterator>, Hash, 266349cc55cSDimitry Andric equal_to<iter_key_t<InputIterator>>, Allocator>; // C++17 267349cc55cSDimitry Andric 26806c3fb27SDimitry Andrictemplate<ranges::input_range R, class Allocator> 26906c3fb27SDimitry Andric unordered_map(from_range_t, R&&, typename see below::size_type, Allocator) 27006c3fb27SDimitry Andric -> unordered_map<range-key-type<R>, range-mapped-type<R>, hash<range-key-type<R>>, 27106c3fb27SDimitry Andric equal_to<range-key-type<R>>, Allocator>; // C++23 27206c3fb27SDimitry Andric 27306c3fb27SDimitry Andrictemplate<ranges::input_range R, class Allocator> 27406c3fb27SDimitry Andric unordered_map(from_range_t, R&&, Allocator) 27506c3fb27SDimitry Andric -> unordered_map<range-key-type<R>, range-mapped-type<R>, hash<range-key-type<R>>, 27606c3fb27SDimitry Andric equal_to<range-key-type<R>>, Allocator>; // C++23 27706c3fb27SDimitry Andric 27806c3fb27SDimitry Andrictemplate<ranges::input_range R, class Hash, class Allocator> 27906c3fb27SDimitry Andric unordered_map(from_range_t, R&&, typename see below::size_type, Hash, Allocator) 28006c3fb27SDimitry Andric -> unordered_map<range-key-type<R>, range-mapped-type<R>, Hash, 28106c3fb27SDimitry Andric equal_to<range-key-type<R>>, Allocator>; // C++23 28206c3fb27SDimitry Andric 283349cc55cSDimitry Andrictemplate<class Key, class T, typename Allocator> 284349cc55cSDimitry Andricunordered_map(initializer_list<pair<const Key, T>>, typename see below::size_type, Allocator) 285349cc55cSDimitry Andric -> unordered_map<Key, T, hash<Key>, equal_to<Key>, Allocator>; // C++17 286349cc55cSDimitry Andric 287349cc55cSDimitry Andrictemplate<class Key, class T, typename Allocator> 288349cc55cSDimitry Andricunordered_map(initializer_list<pair<const Key, T>>, Allocator) 289349cc55cSDimitry Andric -> unordered_map<Key, T, hash<Key>, equal_to<Key>, Allocator>; // C++17 290349cc55cSDimitry Andric 291349cc55cSDimitry Andrictemplate<class Key, class T, class Hash, class Allocator> 292349cc55cSDimitry Andricunordered_map(initializer_list<pair<const Key, T>>, typename see below::size_type, Hash, Allocator) 293349cc55cSDimitry Andric -> unordered_map<Key, T, Hash, equal_to<Key>, Allocator>; // C++17 294349cc55cSDimitry Andric 2950b57cec5SDimitry Andrictemplate <class Key, class T, class Hash, class Pred, class Alloc> 2960b57cec5SDimitry Andric void swap(unordered_map<Key, T, Hash, Pred, Alloc>& x, 2970b57cec5SDimitry Andric unordered_map<Key, T, Hash, Pred, Alloc>& y) 2980b57cec5SDimitry Andric noexcept(noexcept(x.swap(y))); 2990b57cec5SDimitry Andric 3000b57cec5SDimitry Andrictemplate <class Key, class T, class Hash, class Pred, class Alloc> 3010b57cec5SDimitry Andric bool 3020b57cec5SDimitry Andric operator==(const unordered_map<Key, T, Hash, Pred, Alloc>& x, 3030b57cec5SDimitry Andric const unordered_map<Key, T, Hash, Pred, Alloc>& y); 3040b57cec5SDimitry Andric 3050b57cec5SDimitry Andrictemplate <class Key, class T, class Hash, class Pred, class Alloc> 3060b57cec5SDimitry Andric bool 3070b57cec5SDimitry Andric operator!=(const unordered_map<Key, T, Hash, Pred, Alloc>& x, 30806c3fb27SDimitry Andric const unordered_map<Key, T, Hash, Pred, Alloc>& y); // Removed in C++20 3090b57cec5SDimitry Andric 3100b57cec5SDimitry Andrictemplate <class Key, class T, class Hash = hash<Key>, class Pred = equal_to<Key>, 3110b57cec5SDimitry Andric class Alloc = allocator<pair<const Key, T>>> 3120b57cec5SDimitry Andricclass unordered_multimap 3130b57cec5SDimitry Andric{ 3140b57cec5SDimitry Andricpublic: 3150b57cec5SDimitry Andric // types 3160b57cec5SDimitry Andric typedef Key key_type; 3170b57cec5SDimitry Andric typedef T mapped_type; 3180b57cec5SDimitry Andric typedef Hash hasher; 3190b57cec5SDimitry Andric typedef Pred key_equal; 3200b57cec5SDimitry Andric typedef Alloc allocator_type; 3210b57cec5SDimitry Andric typedef pair<const key_type, mapped_type> value_type; 3220b57cec5SDimitry Andric typedef value_type& reference; 3230b57cec5SDimitry Andric typedef const value_type& const_reference; 3240b57cec5SDimitry Andric typedef typename allocator_traits<allocator_type>::pointer pointer; 3250b57cec5SDimitry Andric typedef typename allocator_traits<allocator_type>::const_pointer const_pointer; 3260b57cec5SDimitry Andric typedef typename allocator_traits<allocator_type>::size_type size_type; 3270b57cec5SDimitry Andric typedef typename allocator_traits<allocator_type>::difference_type difference_type; 3280b57cec5SDimitry Andric 3290b57cec5SDimitry Andric typedef /unspecified/ iterator; 3300b57cec5SDimitry Andric typedef /unspecified/ const_iterator; 3310b57cec5SDimitry Andric typedef /unspecified/ local_iterator; 3320b57cec5SDimitry Andric typedef /unspecified/ const_local_iterator; 3330b57cec5SDimitry Andric 3340b57cec5SDimitry Andric typedef unspecified node_type; // C++17 3350b57cec5SDimitry Andric 3360b57cec5SDimitry Andric unordered_multimap() 3370b57cec5SDimitry Andric noexcept( 3380b57cec5SDimitry Andric is_nothrow_default_constructible<hasher>::value && 3390b57cec5SDimitry Andric is_nothrow_default_constructible<key_equal>::value && 3400b57cec5SDimitry Andric is_nothrow_default_constructible<allocator_type>::value); 3410b57cec5SDimitry Andric explicit unordered_multimap(size_type n, const hasher& hf = hasher(), 3420b57cec5SDimitry Andric const key_equal& eql = key_equal(), 3430b57cec5SDimitry Andric const allocator_type& a = allocator_type()); 3440b57cec5SDimitry Andric template <class InputIterator> 3450b57cec5SDimitry Andric unordered_multimap(InputIterator f, InputIterator l, 3460b57cec5SDimitry Andric size_type n = 0, const hasher& hf = hasher(), 3470b57cec5SDimitry Andric const key_equal& eql = key_equal(), 3480b57cec5SDimitry Andric const allocator_type& a = allocator_type()); 34906c3fb27SDimitry Andric template<container-compatible-range<value_type> R> 35006c3fb27SDimitry Andric unordered_multimap(from_range_t, R&& rg, size_type n = see below, 35106c3fb27SDimitry Andric const hasher& hf = hasher(), const key_equal& eql = key_equal(), 35206c3fb27SDimitry Andric const allocator_type& a = allocator_type()); // C++23 3530b57cec5SDimitry Andric explicit unordered_multimap(const allocator_type&); 3540b57cec5SDimitry Andric unordered_multimap(const unordered_multimap&); 3550b57cec5SDimitry Andric unordered_multimap(const unordered_multimap&, const Allocator&); 3560b57cec5SDimitry Andric unordered_multimap(unordered_multimap&&) 3570b57cec5SDimitry Andric noexcept( 3580b57cec5SDimitry Andric is_nothrow_move_constructible<hasher>::value && 3590b57cec5SDimitry Andric is_nothrow_move_constructible<key_equal>::value && 3600b57cec5SDimitry Andric is_nothrow_move_constructible<allocator_type>::value); 3610b57cec5SDimitry Andric unordered_multimap(unordered_multimap&&, const Allocator&); 3620b57cec5SDimitry Andric unordered_multimap(initializer_list<value_type>, size_type n = 0, 3630b57cec5SDimitry Andric const hasher& hf = hasher(), const key_equal& eql = key_equal(), 3640b57cec5SDimitry Andric const allocator_type& a = allocator_type()); 3650b57cec5SDimitry Andric unordered_multimap(size_type n, const allocator_type& a) 3660b57cec5SDimitry Andric : unordered_multimap(n, hasher(), key_equal(), a) {} // C++14 3670b57cec5SDimitry Andric unordered_multimap(size_type n, const hasher& hf, const allocator_type& a) 3680b57cec5SDimitry Andric : unordered_multimap(n, hf, key_equal(), a) {} // C++14 3690b57cec5SDimitry Andric template <class InputIterator> 3700b57cec5SDimitry Andric unordered_multimap(InputIterator f, InputIterator l, size_type n, const allocator_type& a) 3710b57cec5SDimitry Andric : unordered_multimap(f, l, n, hasher(), key_equal(), a) {} // C++14 3720b57cec5SDimitry Andric template <class InputIterator> 3730b57cec5SDimitry Andric unordered_multimap(InputIterator f, InputIterator l, size_type n, const hasher& hf, 3740b57cec5SDimitry Andric const allocator_type& a) 3750b57cec5SDimitry Andric : unordered_multimap(f, l, n, hf, key_equal(), a) {} // C++14 37606c3fb27SDimitry Andric template<container-compatible-range<value_type> R> 37706c3fb27SDimitry Andric unordered_multimap(from_range_t, R&& rg, size_type n, const allocator_type& a) 37806c3fb27SDimitry Andric : unordered_multimap(from_range, std::forward<R>(rg), n, hasher(), key_equal(), a) { } // C++23 37906c3fb27SDimitry Andric template<container-compatible-range<value_type> R> 38006c3fb27SDimitry Andric unordered_multimap(from_range_t, R&& rg, size_type n, const hasher& hf, const allocator_type& a) 38106c3fb27SDimitry Andric : unordered_multimap(from_range, std::forward<R>(rg), n, hf, key_equal(), a) { } // C++23 3820b57cec5SDimitry Andric unordered_multimap(initializer_list<value_type> il, size_type n, const allocator_type& a) 3830b57cec5SDimitry Andric : unordered_multimap(il, n, hasher(), key_equal(), a) {} // C++14 3840b57cec5SDimitry Andric unordered_multimap(initializer_list<value_type> il, size_type n, const hasher& hf, 3850b57cec5SDimitry Andric const allocator_type& a) 3860b57cec5SDimitry Andric : unordered_multimap(il, n, hf, key_equal(), a) {} // C++14 3870b57cec5SDimitry Andric ~unordered_multimap(); 3880b57cec5SDimitry Andric unordered_multimap& operator=(const unordered_multimap&); 3890b57cec5SDimitry Andric unordered_multimap& operator=(unordered_multimap&&) 3900b57cec5SDimitry Andric noexcept( 3910b57cec5SDimitry Andric allocator_type::propagate_on_container_move_assignment::value && 3920b57cec5SDimitry Andric is_nothrow_move_assignable<allocator_type>::value && 3930b57cec5SDimitry Andric is_nothrow_move_assignable<hasher>::value && 3940b57cec5SDimitry Andric is_nothrow_move_assignable<key_equal>::value); 3950b57cec5SDimitry Andric unordered_multimap& operator=(initializer_list<value_type>); 3960b57cec5SDimitry Andric 3970b57cec5SDimitry Andric allocator_type get_allocator() const noexcept; 3980b57cec5SDimitry Andric 3990b57cec5SDimitry Andric bool empty() const noexcept; 4000b57cec5SDimitry Andric size_type size() const noexcept; 4010b57cec5SDimitry Andric size_type max_size() const noexcept; 4020b57cec5SDimitry Andric 4030b57cec5SDimitry Andric iterator begin() noexcept; 4040b57cec5SDimitry Andric iterator end() noexcept; 4050b57cec5SDimitry Andric const_iterator begin() const noexcept; 4060b57cec5SDimitry Andric const_iterator end() const noexcept; 4070b57cec5SDimitry Andric const_iterator cbegin() const noexcept; 4080b57cec5SDimitry Andric const_iterator cend() const noexcept; 4090b57cec5SDimitry Andric 4100b57cec5SDimitry Andric template <class... Args> 4110b57cec5SDimitry Andric iterator emplace(Args&&... args); 4120b57cec5SDimitry Andric template <class... Args> 4130b57cec5SDimitry Andric iterator emplace_hint(const_iterator position, Args&&... args); 4140b57cec5SDimitry Andric iterator insert(const value_type& obj); 4150b57cec5SDimitry Andric template <class P> 4160b57cec5SDimitry Andric iterator insert(P&& obj); 4170b57cec5SDimitry Andric iterator insert(const_iterator hint, const value_type& obj); 4180b57cec5SDimitry Andric template <class P> 4190b57cec5SDimitry Andric iterator insert(const_iterator hint, P&& obj); 4200b57cec5SDimitry Andric template <class InputIterator> 4210b57cec5SDimitry Andric void insert(InputIterator first, InputIterator last); 42206c3fb27SDimitry Andric template<container-compatible-range<value_type> R> 42306c3fb27SDimitry Andric void insert_range(R&& rg); // C++23 4240b57cec5SDimitry Andric void insert(initializer_list<value_type>); 4250b57cec5SDimitry Andric 4260b57cec5SDimitry Andric node_type extract(const_iterator position); // C++17 4270b57cec5SDimitry Andric node_type extract(const key_type& x); // C++17 4280b57cec5SDimitry Andric iterator insert(node_type&& nh); // C++17 4290b57cec5SDimitry Andric iterator insert(const_iterator hint, node_type&& nh); // C++17 4300b57cec5SDimitry Andric 4310b57cec5SDimitry Andric iterator erase(const_iterator position); 4320b57cec5SDimitry Andric iterator erase(iterator position); // C++14 4330b57cec5SDimitry Andric size_type erase(const key_type& k); 4340b57cec5SDimitry Andric iterator erase(const_iterator first, const_iterator last); 4350b57cec5SDimitry Andric void clear() noexcept; 4360b57cec5SDimitry Andric 4370b57cec5SDimitry Andric template<class H2, class P2> 4380b57cec5SDimitry Andric void merge(unordered_multimap<Key, T, H2, P2, Allocator>& source); // C++17 4390b57cec5SDimitry Andric template<class H2, class P2> 4400b57cec5SDimitry Andric void merge(unordered_multimap<Key, T, H2, P2, Allocator>&& source); // C++17 4410b57cec5SDimitry Andric template<class H2, class P2> 4420b57cec5SDimitry Andric void merge(unordered_map<Key, T, H2, P2, Allocator>& source); // C++17 4430b57cec5SDimitry Andric template<class H2, class P2> 4440b57cec5SDimitry Andric void merge(unordered_map<Key, T, H2, P2, Allocator>&& source); // C++17 4450b57cec5SDimitry Andric 4460b57cec5SDimitry Andric void swap(unordered_multimap&) 4470b57cec5SDimitry Andric noexcept( 4480b57cec5SDimitry Andric (!allocator_type::propagate_on_container_swap::value || 4490b57cec5SDimitry Andric __is_nothrow_swappable<allocator_type>::value) && 4500b57cec5SDimitry Andric __is_nothrow_swappable<hasher>::value && 4510b57cec5SDimitry Andric __is_nothrow_swappable<key_equal>::value); 4520b57cec5SDimitry Andric 4530b57cec5SDimitry Andric hasher hash_function() const; 4540b57cec5SDimitry Andric key_equal key_eq() const; 4550b57cec5SDimitry Andric 4560b57cec5SDimitry Andric iterator find(const key_type& k); 4570b57cec5SDimitry Andric const_iterator find(const key_type& k) const; 458e8d8bef9SDimitry Andric template<typename K> 459e8d8bef9SDimitry Andric iterator find(const K& x); // C++20 460e8d8bef9SDimitry Andric template<typename K> 461e8d8bef9SDimitry Andric const_iterator find(const K& x) const; // C++20 4620b57cec5SDimitry Andric size_type count(const key_type& k) const; 463e8d8bef9SDimitry Andric template<typename K> 464e8d8bef9SDimitry Andric size_type count(const K& k) const; // C++20 4650b57cec5SDimitry Andric bool contains(const key_type& k) const; // C++20 466e8d8bef9SDimitry Andric template<typename K> 467e8d8bef9SDimitry Andric bool contains(const K& k) const; // C++20 4680b57cec5SDimitry Andric pair<iterator, iterator> equal_range(const key_type& k); 4690b57cec5SDimitry Andric pair<const_iterator, const_iterator> equal_range(const key_type& k) const; 470e8d8bef9SDimitry Andric template<typename K> 471e8d8bef9SDimitry Andric pair<iterator, iterator> equal_range(const K& k); // C++20 472e8d8bef9SDimitry Andric template<typename K> 473e8d8bef9SDimitry Andric pair<const_iterator, const_iterator> equal_range(const K& k) const; // C++20 4740b57cec5SDimitry Andric 4750b57cec5SDimitry Andric size_type bucket_count() const noexcept; 4760b57cec5SDimitry Andric size_type max_bucket_count() const noexcept; 4770b57cec5SDimitry Andric 4780b57cec5SDimitry Andric size_type bucket_size(size_type n) const; 4790b57cec5SDimitry Andric size_type bucket(const key_type& k) const; 4800b57cec5SDimitry Andric 4810b57cec5SDimitry Andric local_iterator begin(size_type n); 4820b57cec5SDimitry Andric local_iterator end(size_type n); 4830b57cec5SDimitry Andric const_local_iterator begin(size_type n) const; 4840b57cec5SDimitry Andric const_local_iterator end(size_type n) const; 4850b57cec5SDimitry Andric const_local_iterator cbegin(size_type n) const; 4860b57cec5SDimitry Andric const_local_iterator cend(size_type n) const; 4870b57cec5SDimitry Andric 4880b57cec5SDimitry Andric float load_factor() const noexcept; 4890b57cec5SDimitry Andric float max_load_factor() const noexcept; 4900b57cec5SDimitry Andric void max_load_factor(float z); 4910b57cec5SDimitry Andric void rehash(size_type n); 4920b57cec5SDimitry Andric void reserve(size_type n); 4930b57cec5SDimitry Andric}; 4940b57cec5SDimitry Andric 495349cc55cSDimitry Andrictemplate<class InputIterator, 496349cc55cSDimitry Andric class Hash = hash<iter_key_t<InputIterator>>, class Pred = equal_to<iter_key_t<InputIterator>>, 497349cc55cSDimitry Andric class Allocator = allocator<iter_to_alloc_t<InputIterator>>> 498349cc55cSDimitry Andricunordered_multimap(InputIterator, InputIterator, typename see below::size_type = see below, 499349cc55cSDimitry Andric Hash = Hash(), Pred = Pred(), Allocator = Allocator()) 500349cc55cSDimitry Andric -> unordered_multimap<iter_key_t<InputIterator>, iter_value_t<InputIterator>, Hash, Pred, 501349cc55cSDimitry Andric Allocator>; // C++17 502349cc55cSDimitry Andric 50306c3fb27SDimitry Andrictemplate<ranges::input_range R, class Hash = hash<range-key-type<R>>, 50406c3fb27SDimitry Andric class Pred = equal_to<range-key-type<R>>, 50506c3fb27SDimitry Andric class Allocator = allocator<range-to-alloc-type<R>>> 50606c3fb27SDimitry Andric unordered_multimap(from_range_t, R&&, typename see below::size_type = see below, 50706c3fb27SDimitry Andric Hash = Hash(), Pred = Pred(), Allocator = Allocator()) 50806c3fb27SDimitry Andric -> unordered_multimap<range-key-type<R>, range-mapped-type<R>, Hash, Pred, Allocator>; // C++23 50906c3fb27SDimitry Andric 510349cc55cSDimitry Andrictemplate<class Key, class T, class Hash = hash<Key>, 511349cc55cSDimitry Andric class Pred = equal_to<Key>, class Allocator = allocator<pair<const Key, T>>> 512349cc55cSDimitry Andricunordered_multimap(initializer_list<pair<const Key, T>>, typename see below::size_type = see below, 513349cc55cSDimitry Andric Hash = Hash(), Pred = Pred(), Allocator = Allocator()) 514349cc55cSDimitry Andric -> unordered_multimap<Key, T, Hash, Pred, Allocator>; // C++17 515349cc55cSDimitry Andric 516349cc55cSDimitry Andrictemplate<class InputIterator, class Allocator> 517349cc55cSDimitry Andricunordered_multimap(InputIterator, InputIterator, typename see below::size_type, Allocator) 518349cc55cSDimitry Andric -> unordered_multimap<iter_key_t<InputIterator>, iter_val_t<InputIterator>, 519349cc55cSDimitry Andric hash<iter_key_t<InputIterator>>, equal_to<iter_key_t<InputIterator>>, Allocator>; // C++17 520349cc55cSDimitry Andric 521349cc55cSDimitry Andrictemplate<class InputIterator, class Allocator> 522349cc55cSDimitry Andricunordered_multimap(InputIterator, InputIterator, Allocator) 523349cc55cSDimitry Andric -> unordered_multimap<iter_key_t<InputIterator>, iter_val_t<InputIterator>, 524349cc55cSDimitry Andric hash<iter_key_t<InputIterator>>, equal_to<iter_key_t<InputIterator>>, Allocator>; // C++17 525349cc55cSDimitry Andric 526349cc55cSDimitry Andrictemplate<class InputIterator, class Hash, class Allocator> 527349cc55cSDimitry Andricunordered_multimap(InputIterator, InputIterator, typename see below::size_type, Hash, Allocator) 528349cc55cSDimitry Andric -> unordered_multimap<iter_key_t<InputIterator>, iter_val_t<InputIterator>, Hash, 529349cc55cSDimitry Andric equal_to<iter_key_t<InputIterator>>, Allocator>; // C++17 530349cc55cSDimitry Andric 53106c3fb27SDimitry Andrictemplate<ranges::input_range R, class Allocator> 53206c3fb27SDimitry Andric unordered_multimap(from_range_t, R&&, typename see below::size_type, Allocator) 53306c3fb27SDimitry Andric -> unordered_multimap<range-key-type<R>, range-mapped-type<R>, hash<range-key-type<R>>, 53406c3fb27SDimitry Andric equal_to<range-key-type<R>>, Allocator>; // C++23 53506c3fb27SDimitry Andric 53606c3fb27SDimitry Andrictemplate<ranges::input_range R, class Allocator> 53706c3fb27SDimitry Andric unordered_multimap(from_range_t, R&&, Allocator) 53806c3fb27SDimitry Andric -> unordered_multimap<range-key-type<R>, range-mapped-type<R>, hash<range-key-type<R>>, 53906c3fb27SDimitry Andric equal_to<range-key-type<R>>, Allocator>; // C++23 54006c3fb27SDimitry Andric 54106c3fb27SDimitry Andrictemplate<ranges::input_range R, class Hash, class Allocator> 54206c3fb27SDimitry Andric unordered_multimap(from_range_t, R&&, typename see below::size_type, Hash, Allocator) 54306c3fb27SDimitry Andric -> unordered_multimap<range-key-type<R>, range-mapped-type<R>, Hash, 54406c3fb27SDimitry Andric equal_to<range-key-type<R>>, Allocator>; // C++23 54506c3fb27SDimitry Andric 546349cc55cSDimitry Andrictemplate<class Key, class T, typename Allocator> 547349cc55cSDimitry Andricunordered_multimap(initializer_list<pair<const Key, T>>, typename see below::size_type, Allocator) 548349cc55cSDimitry Andric -> unordered_multimap<Key, T, hash<Key>, equal_to<Key>, Allocator>; // C++17 549349cc55cSDimitry Andric 550349cc55cSDimitry Andrictemplate<class Key, class T, typename Allocator> 551349cc55cSDimitry Andricunordered_multimap(initializer_list<pair<const Key, T>>, Allocator) 552349cc55cSDimitry Andric -> unordered_multimap<Key, T, hash<Key>, equal_to<Key>, Allocator>; // C++17 553349cc55cSDimitry Andric 554349cc55cSDimitry Andrictemplate<class Key, class T, class Hash, class Allocator> 555349cc55cSDimitry Andricunordered_multimap(initializer_list<pair<const Key, T>>, typename see below::size_type, Hash, 556349cc55cSDimitry Andric Allocator) 557349cc55cSDimitry Andric -> unordered_multimap<Key, T, Hash, equal_to<Key>, Allocator>; // C++17 558349cc55cSDimitry Andric 5590b57cec5SDimitry Andrictemplate <class Key, class T, class Hash, class Pred, class Alloc> 5600b57cec5SDimitry Andric void swap(unordered_multimap<Key, T, Hash, Pred, Alloc>& x, 5610b57cec5SDimitry Andric unordered_multimap<Key, T, Hash, Pred, Alloc>& y) 5620b57cec5SDimitry Andric noexcept(noexcept(x.swap(y))); 5630b57cec5SDimitry Andric 5640b57cec5SDimitry Andrictemplate <class K, class T, class H, class P, class A, class Predicate> 5655ffd83dbSDimitry Andric typename unordered_map<K, T, H, P, A>::size_type 5665ffd83dbSDimitry Andric erase_if(unordered_map<K, T, H, P, A>& c, Predicate pred); // C++20 5670b57cec5SDimitry Andric 5680b57cec5SDimitry Andrictemplate <class K, class T, class H, class P, class A, class Predicate> 5695ffd83dbSDimitry Andric typename unordered_multimap<K, T, H, P, A>::size_type 5705ffd83dbSDimitry Andric erase_if(unordered_multimap<K, T, H, P, A>& c, Predicate pred); // C++20 5710b57cec5SDimitry Andric 5720b57cec5SDimitry Andrictemplate <class Key, class T, class Hash, class Pred, class Alloc> 5730b57cec5SDimitry Andric bool 5740b57cec5SDimitry Andric operator==(const unordered_multimap<Key, T, Hash, Pred, Alloc>& x, 5750b57cec5SDimitry Andric const unordered_multimap<Key, T, Hash, Pred, Alloc>& y); 5760b57cec5SDimitry Andric 5770b57cec5SDimitry Andrictemplate <class Key, class T, class Hash, class Pred, class Alloc> 5780b57cec5SDimitry Andric bool 5790b57cec5SDimitry Andric operator!=(const unordered_multimap<Key, T, Hash, Pred, Alloc>& x, 58006c3fb27SDimitry Andric const unordered_multimap<Key, T, Hash, Pred, Alloc>& y); // Removed in C++20 5810b57cec5SDimitry Andric 5820b57cec5SDimitry Andric} // std 5830b57cec5SDimitry Andric 5840b57cec5SDimitry Andric*/ 5850b57cec5SDimitry Andric 58681ad6265SDimitry Andric#include <__algorithm/is_permutation.h> 587*0fca6ea1SDimitry Andric#include <__assert> 5880b57cec5SDimitry Andric#include <__config> 589fe6060f1SDimitry Andric#include <__functional/is_transparent.h> 59081ad6265SDimitry Andric#include <__functional/operations.h> 5910b57cec5SDimitry Andric#include <__hash_table> 59281ad6265SDimitry Andric#include <__iterator/distance.h> 59381ad6265SDimitry Andric#include <__iterator/erase_if_container.h> 59404eeddc0SDimitry Andric#include <__iterator/iterator_traits.h> 59506c3fb27SDimitry Andric#include <__iterator/ranges_iterator_traits.h> 59604eeddc0SDimitry Andric#include <__memory/addressof.h> 597bdd1243dSDimitry Andric#include <__memory/allocator.h> 598bdd1243dSDimitry Andric#include <__memory_resource/polymorphic_allocator.h> 5990b57cec5SDimitry Andric#include <__node_handle> 60006c3fb27SDimitry Andric#include <__ranges/concepts.h> 60106c3fb27SDimitry Andric#include <__ranges/container_compatible_range.h> 60206c3fb27SDimitry Andric#include <__ranges/from_range.h> 603bdd1243dSDimitry Andric#include <__type_traits/is_allocator.h> 60406c3fb27SDimitry Andric#include <__type_traits/type_identity.h> 605fe6060f1SDimitry Andric#include <__utility/forward.h> 6060b57cec5SDimitry Andric#include <stdexcept> 6070b57cec5SDimitry Andric#include <tuple> 6080b57cec5SDimitry Andric#include <version> 6090b57cec5SDimitry Andric 61081ad6265SDimitry Andric// standard-mandated includes 61181ad6265SDimitry Andric 61281ad6265SDimitry Andric// [iterator.range] 61381ad6265SDimitry Andric#include <__iterator/access.h> 61481ad6265SDimitry Andric#include <__iterator/data.h> 61581ad6265SDimitry Andric#include <__iterator/empty.h> 61681ad6265SDimitry Andric#include <__iterator/reverse_access.h> 61781ad6265SDimitry Andric#include <__iterator/size.h> 61881ad6265SDimitry Andric 61981ad6265SDimitry Andric// [unord.map.syn] 62081ad6265SDimitry Andric#include <compare> 62181ad6265SDimitry Andric#include <initializer_list> 62281ad6265SDimitry Andric 6230b57cec5SDimitry Andric#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) 6240b57cec5SDimitry Andric# pragma GCC system_header 6250b57cec5SDimitry Andric#endif 6260b57cec5SDimitry Andric 627b3edf446SDimitry Andric_LIBCPP_PUSH_MACROS 628b3edf446SDimitry Andric#include <__undef_macros> 629b3edf446SDimitry Andric 6300b57cec5SDimitry Andric_LIBCPP_BEGIN_NAMESPACE_STD 6310b57cec5SDimitry Andric 632cb14a3feSDimitry Andrictemplate <class _Key, 633cb14a3feSDimitry Andric class _Cp, 634cb14a3feSDimitry Andric class _Hash, 635cb14a3feSDimitry Andric class _Pred, 6360b57cec5SDimitry Andric bool = is_empty<_Hash>::value && !__libcpp_is_final<_Hash>::value> 637cb14a3feSDimitry Andricclass __unordered_map_hasher : private _Hash { 6380b57cec5SDimitry Andricpublic: 639cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI __unordered_map_hasher() _NOEXCEPT_(is_nothrow_default_constructible<_Hash>::value) : _Hash() {} 640cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI __unordered_map_hasher(const _Hash& __h) _NOEXCEPT_(is_nothrow_copy_constructible<_Hash>::value) 6410b57cec5SDimitry Andric : _Hash(__h) {} 642cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI const _Hash& hash_function() const _NOEXCEPT { return *this; } 643cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI size_t operator()(const _Cp& __x) const { 644cb14a3feSDimitry Andric return static_cast<const _Hash&>(*this)(__x.__get_value().first); 645cb14a3feSDimitry Andric } 646cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI size_t operator()(const _Key& __x) const { return static_cast<const _Hash&>(*this)(__x); } 64706c3fb27SDimitry Andric#if _LIBCPP_STD_VER >= 20 648349cc55cSDimitry Andric template <typename _K2> 649cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI size_t operator()(const _K2& __x) const { 650cb14a3feSDimitry Andric return static_cast<const _Hash&>(*this)(__x); 651cb14a3feSDimitry Andric } 652e8d8bef9SDimitry Andric#endif 653*0fca6ea1SDimitry Andric _LIBCPP_HIDE_FROM_ABI void swap(__unordered_map_hasher& __y) _NOEXCEPT_(__is_nothrow_swappable_v<_Hash>) { 6545f757f3fSDimitry Andric using std::swap; 6550b57cec5SDimitry Andric swap(static_cast<_Hash&>(*this), static_cast<_Hash&>(__y)); 6560b57cec5SDimitry Andric } 6570b57cec5SDimitry Andric}; 6580b57cec5SDimitry Andric 659e8d8bef9SDimitry Andrictemplate <class _Key, class _Cp, class _Hash, class _Pred> 660cb14a3feSDimitry Andricclass __unordered_map_hasher<_Key, _Cp, _Hash, _Pred, false> { 6610b57cec5SDimitry Andric _Hash __hash_; 662cb14a3feSDimitry Andric 6630b57cec5SDimitry Andricpublic: 664cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI __unordered_map_hasher() _NOEXCEPT_(is_nothrow_default_constructible<_Hash>::value) 6650b57cec5SDimitry Andric : __hash_() {} 666cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI __unordered_map_hasher(const _Hash& __h) _NOEXCEPT_(is_nothrow_copy_constructible<_Hash>::value) 6670b57cec5SDimitry Andric : __hash_(__h) {} 668cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI const _Hash& hash_function() const _NOEXCEPT { return __hash_; } 669cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI size_t operator()(const _Cp& __x) const { return __hash_(__x.__get_value().first); } 670cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI size_t operator()(const _Key& __x) const { return __hash_(__x); } 67106c3fb27SDimitry Andric#if _LIBCPP_STD_VER >= 20 672349cc55cSDimitry Andric template <typename _K2> 673cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI size_t operator()(const _K2& __x) const { 674cb14a3feSDimitry Andric return __hash_(__x); 675cb14a3feSDimitry Andric } 676e8d8bef9SDimitry Andric#endif 677*0fca6ea1SDimitry Andric _LIBCPP_HIDE_FROM_ABI void swap(__unordered_map_hasher& __y) _NOEXCEPT_(__is_nothrow_swappable_v<_Hash>) { 6785f757f3fSDimitry Andric using std::swap; 6790b57cec5SDimitry Andric swap(__hash_, __y.__hash_); 6800b57cec5SDimitry Andric } 6810b57cec5SDimitry Andric}; 6820b57cec5SDimitry Andric 683e8d8bef9SDimitry Andrictemplate <class _Key, class _Cp, class _Hash, class _Pred, bool __b> 684cb14a3feSDimitry Andricinline _LIBCPP_HIDE_FROM_ABI void 685e8d8bef9SDimitry Andricswap(__unordered_map_hasher<_Key, _Cp, _Hash, _Pred, __b>& __x, 686cb14a3feSDimitry Andric __unordered_map_hasher<_Key, _Cp, _Hash, _Pred, __b>& __y) _NOEXCEPT_(_NOEXCEPT_(__x.swap(__y))) { 6870b57cec5SDimitry Andric __x.swap(__y); 6880b57cec5SDimitry Andric} 6890b57cec5SDimitry Andric 690cb14a3feSDimitry Andrictemplate <class _Key, 691cb14a3feSDimitry Andric class _Cp, 692cb14a3feSDimitry Andric class _Pred, 693cb14a3feSDimitry Andric class _Hash, 6940b57cec5SDimitry Andric bool = is_empty<_Pred>::value && !__libcpp_is_final<_Pred>::value> 695cb14a3feSDimitry Andricclass __unordered_map_equal : private _Pred { 6960b57cec5SDimitry Andricpublic: 697cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI __unordered_map_equal() _NOEXCEPT_(is_nothrow_default_constructible<_Pred>::value) : _Pred() {} 698cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI __unordered_map_equal(const _Pred& __p) _NOEXCEPT_(is_nothrow_copy_constructible<_Pred>::value) 6990b57cec5SDimitry Andric : _Pred(__p) {} 700cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI const _Pred& key_eq() const _NOEXCEPT { return *this; } 701cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI bool operator()(const _Cp& __x, const _Cp& __y) const { 702cb14a3feSDimitry Andric return static_cast<const _Pred&>(*this)(__x.__get_value().first, __y.__get_value().first); 703cb14a3feSDimitry Andric } 704cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI bool operator()(const _Cp& __x, const _Key& __y) const { 705cb14a3feSDimitry Andric return static_cast<const _Pred&>(*this)(__x.__get_value().first, __y); 706cb14a3feSDimitry Andric } 707cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI bool operator()(const _Key& __x, const _Cp& __y) const { 708cb14a3feSDimitry Andric return static_cast<const _Pred&>(*this)(__x, __y.__get_value().first); 709cb14a3feSDimitry Andric } 71006c3fb27SDimitry Andric#if _LIBCPP_STD_VER >= 20 711349cc55cSDimitry Andric template <typename _K2> 712cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI bool operator()(const _Cp& __x, const _K2& __y) const { 713cb14a3feSDimitry Andric return static_cast<const _Pred&>(*this)(__x.__get_value().first, __y); 714cb14a3feSDimitry Andric } 715349cc55cSDimitry Andric template <typename _K2> 716cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI bool operator()(const _K2& __x, const _Cp& __y) const { 717cb14a3feSDimitry Andric return static_cast<const _Pred&>(*this)(__x, __y.__get_value().first); 718cb14a3feSDimitry Andric } 719349cc55cSDimitry Andric template <typename _K2> 720cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI bool operator()(const _Key& __x, const _K2& __y) const { 721cb14a3feSDimitry Andric return static_cast<const _Pred&>(*this)(__x, __y); 722cb14a3feSDimitry Andric } 723349cc55cSDimitry Andric template <typename _K2> 724cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI bool operator()(const _K2& __x, const _Key& __y) const { 725cb14a3feSDimitry Andric return static_cast<const _Pred&>(*this)(__x, __y); 726cb14a3feSDimitry Andric } 727e8d8bef9SDimitry Andric#endif 728*0fca6ea1SDimitry Andric _LIBCPP_HIDE_FROM_ABI void swap(__unordered_map_equal& __y) _NOEXCEPT_(__is_nothrow_swappable_v<_Pred>) { 7295f757f3fSDimitry Andric using std::swap; 7300b57cec5SDimitry Andric swap(static_cast<_Pred&>(*this), static_cast<_Pred&>(__y)); 7310b57cec5SDimitry Andric } 7320b57cec5SDimitry Andric}; 7330b57cec5SDimitry Andric 734e8d8bef9SDimitry Andrictemplate <class _Key, class _Cp, class _Pred, class _Hash> 735cb14a3feSDimitry Andricclass __unordered_map_equal<_Key, _Cp, _Pred, _Hash, false> { 7360b57cec5SDimitry Andric _Pred __pred_; 737cb14a3feSDimitry Andric 7380b57cec5SDimitry Andricpublic: 739cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI __unordered_map_equal() _NOEXCEPT_(is_nothrow_default_constructible<_Pred>::value) 7400b57cec5SDimitry Andric : __pred_() {} 741cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI __unordered_map_equal(const _Pred& __p) _NOEXCEPT_(is_nothrow_copy_constructible<_Pred>::value) 7420b57cec5SDimitry Andric : __pred_(__p) {} 743cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI const _Pred& key_eq() const _NOEXCEPT { return __pred_; } 744cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI bool operator()(const _Cp& __x, const _Cp& __y) const { 745cb14a3feSDimitry Andric return __pred_(__x.__get_value().first, __y.__get_value().first); 746cb14a3feSDimitry Andric } 747cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI bool operator()(const _Cp& __x, const _Key& __y) const { 748cb14a3feSDimitry Andric return __pred_(__x.__get_value().first, __y); 749cb14a3feSDimitry Andric } 750cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI bool operator()(const _Key& __x, const _Cp& __y) const { 751cb14a3feSDimitry Andric return __pred_(__x, __y.__get_value().first); 752cb14a3feSDimitry Andric } 75306c3fb27SDimitry Andric#if _LIBCPP_STD_VER >= 20 754349cc55cSDimitry Andric template <typename _K2> 755cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI bool operator()(const _Cp& __x, const _K2& __y) const { 756cb14a3feSDimitry Andric return __pred_(__x.__get_value().first, __y); 757cb14a3feSDimitry Andric } 758349cc55cSDimitry Andric template <typename _K2> 759cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI bool operator()(const _K2& __x, const _Cp& __y) const { 760cb14a3feSDimitry Andric return __pred_(__x, __y.__get_value().first); 761cb14a3feSDimitry Andric } 762349cc55cSDimitry Andric template <typename _K2> 763cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI bool operator()(const _Key& __x, const _K2& __y) const { 764cb14a3feSDimitry Andric return __pred_(__x, __y); 765cb14a3feSDimitry Andric } 766349cc55cSDimitry Andric template <typename _K2> 767cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI bool operator()(const _K2& __x, const _Key& __y) const { 768cb14a3feSDimitry Andric return __pred_(__x, __y); 769cb14a3feSDimitry Andric } 770e8d8bef9SDimitry Andric#endif 771*0fca6ea1SDimitry Andric _LIBCPP_HIDE_FROM_ABI void swap(__unordered_map_equal& __y) _NOEXCEPT_(__is_nothrow_swappable_v<_Pred>) { 7725f757f3fSDimitry Andric using std::swap; 7730b57cec5SDimitry Andric swap(__pred_, __y.__pred_); 7740b57cec5SDimitry Andric } 7750b57cec5SDimitry Andric}; 7760b57cec5SDimitry Andric 777e8d8bef9SDimitry Andrictemplate <class _Key, class _Cp, class _Pred, class _Hash, bool __b> 778cb14a3feSDimitry Andricinline _LIBCPP_HIDE_FROM_ABI void 779cb14a3feSDimitry Andricswap(__unordered_map_equal<_Key, _Cp, _Pred, _Hash, __b>& __x, __unordered_map_equal<_Key, _Cp, _Pred, _Hash, __b>& __y) 780cb14a3feSDimitry Andric _NOEXCEPT_(_NOEXCEPT_(__x.swap(__y))) { 7810b57cec5SDimitry Andric __x.swap(__y); 7820b57cec5SDimitry Andric} 7830b57cec5SDimitry Andric 7840b57cec5SDimitry Andrictemplate <class _Alloc> 785cb14a3feSDimitry Andricclass __hash_map_node_destructor { 7860b57cec5SDimitry Andric typedef _Alloc allocator_type; 7870b57cec5SDimitry Andric typedef allocator_traits<allocator_type> __alloc_traits; 7880b57cec5SDimitry Andric 7890b57cec5SDimitry Andricpublic: 7900b57cec5SDimitry Andric typedef typename __alloc_traits::pointer pointer; 7910b57cec5SDimitry Andric 792cb14a3feSDimitry Andricprivate: 7930b57cec5SDimitry Andric allocator_type& __na_; 7940b57cec5SDimitry Andric 7950b57cec5SDimitry Andricpublic: 7960b57cec5SDimitry Andric bool __first_constructed; 7970b57cec5SDimitry Andric bool __second_constructed; 7980b57cec5SDimitry Andric 799*0fca6ea1SDimitry Andric __hash_map_node_destructor& operator=(const __hash_map_node_destructor&) = delete; 800*0fca6ea1SDimitry Andric 801cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI explicit __hash_map_node_destructor(allocator_type& __na) _NOEXCEPT 8020b57cec5SDimitry Andric : __na_(__na), 8030b57cec5SDimitry Andric __first_constructed(false), 804cb14a3feSDimitry Andric __second_constructed(false) {} 8050b57cec5SDimitry Andric 8060b57cec5SDimitry Andric#ifndef _LIBCPP_CXX03_LANG 807cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI __hash_map_node_destructor(__hash_node_destructor<allocator_type>&& __x) _NOEXCEPT 8080b57cec5SDimitry Andric : __na_(__x.__na_), 8090b57cec5SDimitry Andric __first_constructed(__x.__value_constructed), 810cb14a3feSDimitry Andric __second_constructed(__x.__value_constructed) { 8110b57cec5SDimitry Andric __x.__value_constructed = false; 8120b57cec5SDimitry Andric } 8130b57cec5SDimitry Andric#else // _LIBCPP_CXX03_LANG 814cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI __hash_map_node_destructor(const __hash_node_destructor<allocator_type>& __x) 815cb14a3feSDimitry Andric : __na_(__x.__na_), __first_constructed(__x.__value_constructed), __second_constructed(__x.__value_constructed) { 8160b57cec5SDimitry Andric const_cast<bool&>(__x.__value_constructed) = false; 8170b57cec5SDimitry Andric } 8180b57cec5SDimitry Andric#endif // _LIBCPP_CXX03_LANG 8190b57cec5SDimitry Andric 820cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI void operator()(pointer __p) _NOEXCEPT { 8210b57cec5SDimitry Andric if (__second_constructed) 8225f757f3fSDimitry Andric __alloc_traits::destroy(__na_, std::addressof(__p->__get_value().__get_value().second)); 8230b57cec5SDimitry Andric if (__first_constructed) 8245f757f3fSDimitry Andric __alloc_traits::destroy(__na_, std::addressof(__p->__get_value().__get_value().first)); 8250b57cec5SDimitry Andric if (__p) 8260b57cec5SDimitry Andric __alloc_traits::deallocate(__na_, __p, 1); 8270b57cec5SDimitry Andric } 8280b57cec5SDimitry Andric}; 8290b57cec5SDimitry Andric 8300b57cec5SDimitry Andric#ifndef _LIBCPP_CXX03_LANG 8310b57cec5SDimitry Andrictemplate <class _Key, class _Tp> 832cb14a3feSDimitry Andricstruct _LIBCPP_STANDALONE_DEBUG __hash_value_type { 8330b57cec5SDimitry Andric typedef _Key key_type; 8340b57cec5SDimitry Andric typedef _Tp mapped_type; 8350b57cec5SDimitry Andric typedef pair<const key_type, mapped_type> value_type; 8360b57cec5SDimitry Andric typedef pair<key_type&, mapped_type&> __nc_ref_pair_type; 8370b57cec5SDimitry Andric typedef pair<key_type&&, mapped_type&&> __nc_rref_pair_type; 8380b57cec5SDimitry Andric 8390b57cec5SDimitry Andricprivate: 840bdd1243dSDimitry Andric value_type __cc_; 8410b57cec5SDimitry Andric 8420b57cec5SDimitry Andricpublic: 843cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI value_type& __get_value() { 84406c3fb27SDimitry Andric# if _LIBCPP_STD_VER >= 17 8455f757f3fSDimitry Andric return *std::launder(std::addressof(__cc_)); 8460b57cec5SDimitry Andric# else 847bdd1243dSDimitry Andric return __cc_; 8480b57cec5SDimitry Andric# endif 8490b57cec5SDimitry Andric } 8500b57cec5SDimitry Andric 851cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI const value_type& __get_value() const { 85206c3fb27SDimitry Andric# if _LIBCPP_STD_VER >= 17 8535f757f3fSDimitry Andric return *std::launder(std::addressof(__cc_)); 8540b57cec5SDimitry Andric# else 855bdd1243dSDimitry Andric return __cc_; 8560b57cec5SDimitry Andric# endif 8570b57cec5SDimitry Andric } 8580b57cec5SDimitry Andric 859cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI __nc_ref_pair_type __ref() { 8600b57cec5SDimitry Andric value_type& __v = __get_value(); 8610b57cec5SDimitry Andric return __nc_ref_pair_type(const_cast<key_type&>(__v.first), __v.second); 8620b57cec5SDimitry Andric } 8630b57cec5SDimitry Andric 864cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI __nc_rref_pair_type __move() { 8650b57cec5SDimitry Andric value_type& __v = __get_value(); 866cb14a3feSDimitry Andric return __nc_rref_pair_type(std::move(const_cast<key_type&>(__v.first)), std::move(__v.second)); 8670b57cec5SDimitry Andric } 8680b57cec5SDimitry Andric 869cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI __hash_value_type& operator=(const __hash_value_type& __v) { 8700b57cec5SDimitry Andric __ref() = __v.__get_value(); 8710b57cec5SDimitry Andric return *this; 8720b57cec5SDimitry Andric } 8730b57cec5SDimitry Andric 874cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI __hash_value_type& operator=(__hash_value_type&& __v) { 8750b57cec5SDimitry Andric __ref() = __v.__move(); 8760b57cec5SDimitry Andric return *this; 8770b57cec5SDimitry Andric } 8780b57cec5SDimitry Andric 879*0fca6ea1SDimitry Andric template <class _ValueTp, __enable_if_t<__is_same_uncvref<_ValueTp, value_type>::value, int> = 0> 880cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI __hash_value_type& operator=(_ValueTp&& __v) { 8815f757f3fSDimitry Andric __ref() = std::forward<_ValueTp>(__v); 8820b57cec5SDimitry Andric return *this; 8830b57cec5SDimitry Andric } 8840b57cec5SDimitry Andric 8850b57cec5SDimitry Andric __hash_value_type(const __hash_value_type& __v) = delete; 8860b57cec5SDimitry Andric __hash_value_type(__hash_value_type&& __v) = delete; 8870b57cec5SDimitry Andric template <class... _Args> 8880b57cec5SDimitry Andric explicit __hash_value_type(_Args&&... __args) = delete; 8890b57cec5SDimitry Andric 8900b57cec5SDimitry Andric ~__hash_value_type() = delete; 8910b57cec5SDimitry Andric}; 8920b57cec5SDimitry Andric 8930b57cec5SDimitry Andric#else 8940b57cec5SDimitry Andric 8950b57cec5SDimitry Andrictemplate <class _Key, class _Tp> 896cb14a3feSDimitry Andricstruct __hash_value_type { 8970b57cec5SDimitry Andric typedef _Key key_type; 8980b57cec5SDimitry Andric typedef _Tp mapped_type; 8990b57cec5SDimitry Andric typedef pair<const key_type, mapped_type> value_type; 9000b57cec5SDimitry Andric 9010b57cec5SDimitry Andricprivate: 902bdd1243dSDimitry Andric value_type __cc_; 9030b57cec5SDimitry Andric 9040b57cec5SDimitry Andricpublic: 905cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI value_type& __get_value() { return __cc_; } 906cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI const value_type& __get_value() const { return __cc_; } 9070b57cec5SDimitry Andric 908*0fca6ea1SDimitry Andric ~__hash_value_type() = delete; 9090b57cec5SDimitry Andric}; 9100b57cec5SDimitry Andric 9110b57cec5SDimitry Andric#endif 9120b57cec5SDimitry Andric 9130b57cec5SDimitry Andrictemplate <class _HashIterator> 914cb14a3feSDimitry Andricclass _LIBCPP_TEMPLATE_VIS __hash_map_iterator { 9150b57cec5SDimitry Andric _HashIterator __i_; 9160b57cec5SDimitry Andric 9170b57cec5SDimitry Andric typedef __hash_node_types_from_iterator<_HashIterator> _NodeTypes; 9180b57cec5SDimitry Andric 9190b57cec5SDimitry Andricpublic: 9200b57cec5SDimitry Andric typedef forward_iterator_tag iterator_category; 9210b57cec5SDimitry Andric typedef typename _NodeTypes::__map_value_type value_type; 9220b57cec5SDimitry Andric typedef typename _NodeTypes::difference_type difference_type; 9230b57cec5SDimitry Andric typedef value_type& reference; 9240b57cec5SDimitry Andric typedef typename _NodeTypes::__map_value_type_pointer pointer; 9250b57cec5SDimitry Andric 926cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI __hash_map_iterator() _NOEXCEPT {} 9270b57cec5SDimitry Andric 928cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI __hash_map_iterator(_HashIterator __i) _NOEXCEPT : __i_(__i) {} 9290b57cec5SDimitry Andric 930cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI reference operator*() const { return __i_->__get_value(); } 931cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI pointer operator->() const { return pointer_traits<pointer>::pointer_to(__i_->__get_value()); } 9320b57cec5SDimitry Andric 933cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI __hash_map_iterator& operator++() { 934cb14a3feSDimitry Andric ++__i_; 935cb14a3feSDimitry Andric return *this; 936cb14a3feSDimitry Andric } 937cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI __hash_map_iterator operator++(int) { 9380b57cec5SDimitry Andric __hash_map_iterator __t(*this); 9390b57cec5SDimitry Andric ++(*this); 9400b57cec5SDimitry Andric return __t; 9410b57cec5SDimitry Andric } 9420b57cec5SDimitry Andric 943cb14a3feSDimitry Andric friend _LIBCPP_HIDE_FROM_ABI bool operator==(const __hash_map_iterator& __x, const __hash_map_iterator& __y) { 944cb14a3feSDimitry Andric return __x.__i_ == __y.__i_; 945cb14a3feSDimitry Andric } 94606c3fb27SDimitry Andric#if _LIBCPP_STD_VER <= 17 947cb14a3feSDimitry Andric friend _LIBCPP_HIDE_FROM_ABI bool operator!=(const __hash_map_iterator& __x, const __hash_map_iterator& __y) { 948cb14a3feSDimitry Andric return __x.__i_ != __y.__i_; 949cb14a3feSDimitry Andric } 95006c3fb27SDimitry Andric#endif 9510b57cec5SDimitry Andric 952cb14a3feSDimitry Andric template <class, class, class, class, class> 953cb14a3feSDimitry Andric friend class _LIBCPP_TEMPLATE_VIS unordered_map; 954cb14a3feSDimitry Andric template <class, class, class, class, class> 955cb14a3feSDimitry Andric friend class _LIBCPP_TEMPLATE_VIS unordered_multimap; 956cb14a3feSDimitry Andric template <class> 957cb14a3feSDimitry Andric friend class _LIBCPP_TEMPLATE_VIS __hash_const_iterator; 958cb14a3feSDimitry Andric template <class> 959cb14a3feSDimitry Andric friend class _LIBCPP_TEMPLATE_VIS __hash_const_local_iterator; 960cb14a3feSDimitry Andric template <class> 961cb14a3feSDimitry Andric friend class _LIBCPP_TEMPLATE_VIS __hash_map_const_iterator; 9620b57cec5SDimitry Andric}; 9630b57cec5SDimitry Andric 9640b57cec5SDimitry Andrictemplate <class _HashIterator> 965cb14a3feSDimitry Andricclass _LIBCPP_TEMPLATE_VIS __hash_map_const_iterator { 9660b57cec5SDimitry Andric _HashIterator __i_; 9670b57cec5SDimitry Andric 9680b57cec5SDimitry Andric typedef __hash_node_types_from_iterator<_HashIterator> _NodeTypes; 9690b57cec5SDimitry Andric 9700b57cec5SDimitry Andricpublic: 9710b57cec5SDimitry Andric typedef forward_iterator_tag iterator_category; 9720b57cec5SDimitry Andric typedef typename _NodeTypes::__map_value_type value_type; 9730b57cec5SDimitry Andric typedef typename _NodeTypes::difference_type difference_type; 9740b57cec5SDimitry Andric typedef const value_type& reference; 9750b57cec5SDimitry Andric typedef typename _NodeTypes::__const_map_value_type_pointer pointer; 9760b57cec5SDimitry Andric 977cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI __hash_map_const_iterator() _NOEXCEPT {} 9780b57cec5SDimitry Andric 979cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI __hash_map_const_iterator(_HashIterator __i) _NOEXCEPT : __i_(__i) {} 9805f757f3fSDimitry Andric _LIBCPP_HIDE_FROM_ABI 981cb14a3feSDimitry Andric __hash_map_const_iterator(__hash_map_iterator<typename _HashIterator::__non_const_iterator> __i) _NOEXCEPT 9820b57cec5SDimitry Andric : __i_(__i.__i_) {} 9830b57cec5SDimitry Andric 984cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI reference operator*() const { return __i_->__get_value(); } 985cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI pointer operator->() const { return pointer_traits<pointer>::pointer_to(__i_->__get_value()); } 9860b57cec5SDimitry Andric 987cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI __hash_map_const_iterator& operator++() { 988cb14a3feSDimitry Andric ++__i_; 989cb14a3feSDimitry Andric return *this; 990cb14a3feSDimitry Andric } 991cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI __hash_map_const_iterator operator++(int) { 9920b57cec5SDimitry Andric __hash_map_const_iterator __t(*this); 9930b57cec5SDimitry Andric ++(*this); 9940b57cec5SDimitry Andric return __t; 9950b57cec5SDimitry Andric } 9960b57cec5SDimitry Andric 997cb14a3feSDimitry Andric friend _LIBCPP_HIDE_FROM_ABI bool 998cb14a3feSDimitry Andric operator==(const __hash_map_const_iterator& __x, const __hash_map_const_iterator& __y) { 999cb14a3feSDimitry Andric return __x.__i_ == __y.__i_; 1000cb14a3feSDimitry Andric } 100106c3fb27SDimitry Andric#if _LIBCPP_STD_VER <= 17 1002cb14a3feSDimitry Andric friend _LIBCPP_HIDE_FROM_ABI bool 1003cb14a3feSDimitry Andric operator!=(const __hash_map_const_iterator& __x, const __hash_map_const_iterator& __y) { 1004cb14a3feSDimitry Andric return __x.__i_ != __y.__i_; 1005cb14a3feSDimitry Andric } 100606c3fb27SDimitry Andric#endif 10070b57cec5SDimitry Andric 1008cb14a3feSDimitry Andric template <class, class, class, class, class> 1009cb14a3feSDimitry Andric friend class _LIBCPP_TEMPLATE_VIS unordered_map; 1010cb14a3feSDimitry Andric template <class, class, class, class, class> 1011cb14a3feSDimitry Andric friend class _LIBCPP_TEMPLATE_VIS unordered_multimap; 1012cb14a3feSDimitry Andric template <class> 1013cb14a3feSDimitry Andric friend class _LIBCPP_TEMPLATE_VIS __hash_const_iterator; 1014cb14a3feSDimitry Andric template <class> 1015cb14a3feSDimitry Andric friend class _LIBCPP_TEMPLATE_VIS __hash_const_local_iterator; 10160b57cec5SDimitry Andric}; 10170b57cec5SDimitry Andric 10180b57cec5SDimitry Andrictemplate <class _Key, class _Tp, class _Hash, class _Pred, class _Alloc> 10190b57cec5SDimitry Andricclass unordered_multimap; 10200b57cec5SDimitry Andric 1021cb14a3feSDimitry Andrictemplate <class _Key, 1022cb14a3feSDimitry Andric class _Tp, 1023cb14a3feSDimitry Andric class _Hash = hash<_Key>, 1024cb14a3feSDimitry Andric class _Pred = equal_to<_Key>, 10250b57cec5SDimitry Andric class _Alloc = allocator<pair<const _Key, _Tp> > > 1026cb14a3feSDimitry Andricclass _LIBCPP_TEMPLATE_VIS unordered_map { 10270b57cec5SDimitry Andricpublic: 10280b57cec5SDimitry Andric // types 10290b57cec5SDimitry Andric typedef _Key key_type; 10300b57cec5SDimitry Andric typedef _Tp mapped_type; 103181ad6265SDimitry Andric typedef __type_identity_t<_Hash> hasher; 103281ad6265SDimitry Andric typedef __type_identity_t<_Pred> key_equal; 103381ad6265SDimitry Andric typedef __type_identity_t<_Alloc> allocator_type; 10340b57cec5SDimitry Andric typedef pair<const key_type, mapped_type> value_type; 10350b57cec5SDimitry Andric typedef value_type& reference; 10360b57cec5SDimitry Andric typedef const value_type& const_reference; 1037*0fca6ea1SDimitry Andric static_assert(is_same<value_type, typename allocator_type::value_type>::value, 103806c3fb27SDimitry Andric "Allocator::value_type must be same type as value_type"); 10390b57cec5SDimitry Andric 10400b57cec5SDimitry Andricprivate: 10410b57cec5SDimitry Andric typedef __hash_value_type<key_type, mapped_type> __value_type; 1042e8d8bef9SDimitry Andric typedef __unordered_map_hasher<key_type, __value_type, hasher, key_equal> __hasher; 1043e8d8bef9SDimitry Andric typedef __unordered_map_equal<key_type, __value_type, key_equal, hasher> __key_equal; 1044bdd1243dSDimitry Andric typedef __rebind_alloc<allocator_traits<allocator_type>, __value_type> __allocator_type; 10450b57cec5SDimitry Andric 1046cb14a3feSDimitry Andric typedef __hash_table<__value_type, __hasher, __key_equal, __allocator_type> __table; 10470b57cec5SDimitry Andric 10480b57cec5SDimitry Andric __table __table_; 10490b57cec5SDimitry Andric 10500b57cec5SDimitry Andric typedef typename __table::_NodeTypes _NodeTypes; 10510b57cec5SDimitry Andric typedef typename __table::__node_pointer __node_pointer; 10520b57cec5SDimitry Andric typedef typename __table::__node_const_pointer __node_const_pointer; 10530b57cec5SDimitry Andric typedef typename __table::__node_traits __node_traits; 10540b57cec5SDimitry Andric typedef typename __table::__node_allocator __node_allocator; 10550b57cec5SDimitry Andric typedef typename __table::__node __node; 10560b57cec5SDimitry Andric typedef __hash_map_node_destructor<__node_allocator> _Dp; 10570b57cec5SDimitry Andric typedef unique_ptr<__node, _Dp> __node_holder; 10580b57cec5SDimitry Andric typedef allocator_traits<allocator_type> __alloc_traits; 10590b57cec5SDimitry Andric 1060*0fca6ea1SDimitry Andric static_assert(__check_valid_allocator<allocator_type>::value, ""); 1061bdd1243dSDimitry Andric 1062*0fca6ea1SDimitry Andric static_assert(is_same<typename __table::__container_value_type, value_type>::value, ""); 1063*0fca6ea1SDimitry Andric static_assert(is_same<typename __table::__node_value_type, __value_type>::value, ""); 1064cb14a3feSDimitry Andric 10650b57cec5SDimitry Andricpublic: 10660b57cec5SDimitry Andric typedef typename __alloc_traits::pointer pointer; 10670b57cec5SDimitry Andric typedef typename __alloc_traits::const_pointer const_pointer; 10680b57cec5SDimitry Andric typedef typename __table::size_type size_type; 10690b57cec5SDimitry Andric typedef typename __table::difference_type difference_type; 10700b57cec5SDimitry Andric 10710b57cec5SDimitry Andric typedef __hash_map_iterator<typename __table::iterator> iterator; 10720b57cec5SDimitry Andric typedef __hash_map_const_iterator<typename __table::const_iterator> const_iterator; 10730b57cec5SDimitry Andric typedef __hash_map_iterator<typename __table::local_iterator> local_iterator; 10740b57cec5SDimitry Andric typedef __hash_map_const_iterator<typename __table::const_local_iterator> const_local_iterator; 10750b57cec5SDimitry Andric 107606c3fb27SDimitry Andric#if _LIBCPP_STD_VER >= 17 10770b57cec5SDimitry Andric typedef __map_node_handle<__node, allocator_type> node_type; 10780b57cec5SDimitry Andric typedef __insert_return_type<iterator, node_type> insert_return_type; 10790b57cec5SDimitry Andric#endif 10800b57cec5SDimitry Andric 10810b57cec5SDimitry Andric template <class _Key2, class _Tp2, class _Hash2, class _Pred2, class _Alloc2> 10820b57cec5SDimitry Andric friend class _LIBCPP_TEMPLATE_VIS unordered_map; 10830b57cec5SDimitry Andric template <class _Key2, class _Tp2, class _Hash2, class _Pred2, class _Alloc2> 10840b57cec5SDimitry Andric friend class _LIBCPP_TEMPLATE_VIS unordered_multimap; 10850b57cec5SDimitry Andric 1086cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI unordered_map() _NOEXCEPT_(is_nothrow_default_constructible<__table>::value) {} 1087cb14a3feSDimitry Andric explicit _LIBCPP_HIDE_FROM_ABI 1088cb14a3feSDimitry Andric unordered_map(size_type __n, const hasher& __hf = hasher(), const key_equal& __eql = key_equal()); 10895f757f3fSDimitry Andric _LIBCPP_HIDE_FROM_ABI 1090cb14a3feSDimitry Andric unordered_map(size_type __n, const hasher& __hf, const key_equal& __eql, const allocator_type& __a); 10910b57cec5SDimitry Andric template <class _InputIterator> 109206c3fb27SDimitry Andric _LIBCPP_HIDE_FROM_ABI unordered_map(_InputIterator __first, _InputIterator __last); 10930b57cec5SDimitry Andric template <class _InputIterator> 1094cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI 1095cb14a3feSDimitry Andric unordered_map(_InputIterator __first, 1096cb14a3feSDimitry Andric _InputIterator __last, 1097cb14a3feSDimitry Andric size_type __n, 1098cb14a3feSDimitry Andric const hasher& __hf = hasher(), 10990b57cec5SDimitry Andric const key_equal& __eql = key_equal()); 11000b57cec5SDimitry Andric template <class _InputIterator> 1101cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI unordered_map( 1102cb14a3feSDimitry Andric _InputIterator __first, 1103cb14a3feSDimitry Andric _InputIterator __last, 1104cb14a3feSDimitry Andric size_type __n, 1105cb14a3feSDimitry Andric const hasher& __hf, 11060b57cec5SDimitry Andric const key_equal& __eql, 11070b57cec5SDimitry Andric const allocator_type& __a); 110806c3fb27SDimitry Andric 110906c3fb27SDimitry Andric#if _LIBCPP_STD_VER >= 23 111006c3fb27SDimitry Andric template <_ContainerCompatibleRange<value_type> _Range> 1111cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI unordered_map( 1112cb14a3feSDimitry Andric from_range_t, 1113cb14a3feSDimitry Andric _Range&& __range, 1114cb14a3feSDimitry Andric size_type __n = /*implementation-defined*/ 0, 1115cb14a3feSDimitry Andric const hasher& __hf = hasher(), 1116cb14a3feSDimitry Andric const key_equal& __eql = key_equal(), 111706c3fb27SDimitry Andric const allocator_type& __a = allocator_type()) 111806c3fb27SDimitry Andric : __table_(__hf, __eql, typename __table::allocator_type(__a)) { 111906c3fb27SDimitry Andric if (__n > 0) { 112006c3fb27SDimitry Andric __table_.__rehash_unique(__n); 112106c3fb27SDimitry Andric } 112206c3fb27SDimitry Andric insert_range(std::forward<_Range>(__range)); 112306c3fb27SDimitry Andric } 112406c3fb27SDimitry Andric#endif 112506c3fb27SDimitry Andric 1126cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI explicit unordered_map(const allocator_type& __a); 112706c3fb27SDimitry Andric _LIBCPP_HIDE_FROM_ABI unordered_map(const unordered_map& __u); 112806c3fb27SDimitry Andric _LIBCPP_HIDE_FROM_ABI unordered_map(const unordered_map& __u, const allocator_type& __a); 11290b57cec5SDimitry Andric#ifndef _LIBCPP_CXX03_LANG 1130cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI unordered_map(unordered_map&& __u) _NOEXCEPT_(is_nothrow_move_constructible<__table>::value); 113106c3fb27SDimitry Andric _LIBCPP_HIDE_FROM_ABI unordered_map(unordered_map&& __u, const allocator_type& __a); 113206c3fb27SDimitry Andric _LIBCPP_HIDE_FROM_ABI unordered_map(initializer_list<value_type> __il); 1133cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI 1134cb14a3feSDimitry Andric unordered_map(initializer_list<value_type> __il, 1135cb14a3feSDimitry Andric size_type __n, 1136cb14a3feSDimitry Andric const hasher& __hf = hasher(), 1137cb14a3feSDimitry Andric const key_equal& __eql = key_equal()); 1138cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI unordered_map( 1139cb14a3feSDimitry Andric initializer_list<value_type> __il, 1140cb14a3feSDimitry Andric size_type __n, 1141cb14a3feSDimitry Andric const hasher& __hf, 1142cb14a3feSDimitry Andric const key_equal& __eql, 11430b57cec5SDimitry Andric const allocator_type& __a); 11440b57cec5SDimitry Andric#endif // _LIBCPP_CXX03_LANG 114506c3fb27SDimitry Andric#if _LIBCPP_STD_VER >= 14 1146cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI unordered_map(size_type __n, const allocator_type& __a) 11470b57cec5SDimitry Andric : unordered_map(__n, hasher(), key_equal(), __a) {} 1148cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI unordered_map(size_type __n, const hasher& __hf, const allocator_type& __a) 11490b57cec5SDimitry Andric : unordered_map(__n, __hf, key_equal(), __a) {} 11500b57cec5SDimitry Andric template <class _InputIterator> 11515f757f3fSDimitry Andric _LIBCPP_HIDE_FROM_ABI 11520b57cec5SDimitry Andric unordered_map(_InputIterator __first, _InputIterator __last, size_type __n, const allocator_type& __a) 11530b57cec5SDimitry Andric : unordered_map(__first, __last, __n, hasher(), key_equal(), __a) {} 11540b57cec5SDimitry Andric template <class _InputIterator> 1155cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI unordered_map( 1156cb14a3feSDimitry Andric _InputIterator __first, _InputIterator __last, size_type __n, const hasher& __hf, const allocator_type& __a) 11570b57cec5SDimitry Andric : unordered_map(__first, __last, __n, __hf, key_equal(), __a) {} 115806c3fb27SDimitry Andric 115906c3fb27SDimitry Andric# if _LIBCPP_STD_VER >= 23 116006c3fb27SDimitry Andric template <_ContainerCompatibleRange<value_type> _Range> 1161cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI unordered_map(from_range_t, _Range&& __range, size_type __n, const allocator_type& __a) 116206c3fb27SDimitry Andric : unordered_map(from_range, std::forward<_Range>(__range), __n, hasher(), key_equal(), __a) {} 116306c3fb27SDimitry Andric 116406c3fb27SDimitry Andric template <_ContainerCompatibleRange<value_type> _Range> 116506c3fb27SDimitry Andric _LIBCPP_HIDE_FROM_ABI 116606c3fb27SDimitry Andric unordered_map(from_range_t, _Range&& __range, size_type __n, const hasher& __hf, const allocator_type& __a) 116706c3fb27SDimitry Andric : unordered_map(from_range, std::forward<_Range>(__range), __n, __hf, key_equal(), __a) {} 116806c3fb27SDimitry Andric# endif 116906c3fb27SDimitry Andric 1170cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI unordered_map(initializer_list<value_type> __il, size_type __n, const allocator_type& __a) 11710b57cec5SDimitry Andric : unordered_map(__il, __n, hasher(), key_equal(), __a) {} 11725f757f3fSDimitry Andric _LIBCPP_HIDE_FROM_ABI 1173cb14a3feSDimitry Andric unordered_map(initializer_list<value_type> __il, size_type __n, const hasher& __hf, const allocator_type& __a) 11740b57cec5SDimitry Andric : unordered_map(__il, __n, __hf, key_equal(), __a) {} 11750b57cec5SDimitry Andric#endif 1176cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI ~unordered_map() { 1177bdd1243dSDimitry Andric static_assert(sizeof(std::__diagnose_unordered_container_requirements<_Key, _Hash, _Pred>(0)), ""); 11780b57cec5SDimitry Andric } 11790b57cec5SDimitry Andric 1180cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI unordered_map& operator=(const unordered_map& __u) { 11810b57cec5SDimitry Andric#ifndef _LIBCPP_CXX03_LANG 11820b57cec5SDimitry Andric __table_ = __u.__table_; 11830b57cec5SDimitry Andric#else 11845f757f3fSDimitry Andric if (this != std::addressof(__u)) { 11850b57cec5SDimitry Andric __table_.clear(); 11860b57cec5SDimitry Andric __table_.hash_function() = __u.__table_.hash_function(); 11870b57cec5SDimitry Andric __table_.key_eq() = __u.__table_.key_eq(); 11880b57cec5SDimitry Andric __table_.max_load_factor() = __u.__table_.max_load_factor(); 11890b57cec5SDimitry Andric __table_.__copy_assign_alloc(__u.__table_); 11900b57cec5SDimitry Andric insert(__u.begin(), __u.end()); 11910b57cec5SDimitry Andric } 11920b57cec5SDimitry Andric#endif 11930b57cec5SDimitry Andric return *this; 11940b57cec5SDimitry Andric } 11950b57cec5SDimitry Andric#ifndef _LIBCPP_CXX03_LANG 1196cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI unordered_map& operator=(unordered_map&& __u) 11970b57cec5SDimitry Andric _NOEXCEPT_(is_nothrow_move_assignable<__table>::value); 1198cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI unordered_map& operator=(initializer_list<value_type> __il); 11990b57cec5SDimitry Andric#endif // _LIBCPP_CXX03_LANG 12000b57cec5SDimitry Andric 1201cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI allocator_type get_allocator() const _NOEXCEPT { 1202cb14a3feSDimitry Andric return allocator_type(__table_.__node_alloc()); 12030b57cec5SDimitry Andric } 12040b57cec5SDimitry Andric 1205*0fca6ea1SDimitry Andric _LIBCPP_NODISCARD _LIBCPP_HIDE_FROM_ABI bool empty() const _NOEXCEPT { return __table_.size() == 0; } 1206cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI size_type size() const _NOEXCEPT { return __table_.size(); } 1207cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI size_type max_size() const _NOEXCEPT { return __table_.max_size(); } 1208cb14a3feSDimitry Andric 1209cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI iterator begin() _NOEXCEPT { return __table_.begin(); } 1210cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI iterator end() _NOEXCEPT { return __table_.end(); } 1211cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI const_iterator begin() const _NOEXCEPT { return __table_.begin(); } 1212cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI const_iterator end() const _NOEXCEPT { return __table_.end(); } 1213cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI const_iterator cbegin() const _NOEXCEPT { return __table_.begin(); } 1214cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI const_iterator cend() const _NOEXCEPT { return __table_.end(); } 1215cb14a3feSDimitry Andric 1216cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI pair<iterator, bool> insert(const value_type& __x) { return __table_.__insert_unique(__x); } 1217cb14a3feSDimitry Andric 1218cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI iterator insert(const_iterator, const value_type& __x) { return insert(__x).first; } 1219cb14a3feSDimitry Andric 12200b57cec5SDimitry Andric template <class _InputIterator> 1221cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI void insert(_InputIterator __first, _InputIterator __last); 12220b57cec5SDimitry Andric 122306c3fb27SDimitry Andric#if _LIBCPP_STD_VER >= 23 122406c3fb27SDimitry Andric template <_ContainerCompatibleRange<value_type> _Range> 1225cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI void insert_range(_Range&& __range) { 122606c3fb27SDimitry Andric for (auto&& __element : __range) { 122706c3fb27SDimitry Andric __table_.__insert_unique(std::forward<decltype(__element)>(__element)); 122806c3fb27SDimitry Andric } 122906c3fb27SDimitry Andric } 123006c3fb27SDimitry Andric#endif 123106c3fb27SDimitry Andric 12320b57cec5SDimitry Andric#ifndef _LIBCPP_CXX03_LANG 1233cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI void insert(initializer_list<value_type> __il) { insert(__il.begin(), __il.end()); } 12340b57cec5SDimitry Andric 1235cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI pair<iterator, bool> insert(value_type&& __x) { 1236cb14a3feSDimitry Andric return __table_.__insert_unique(std::move(__x)); 1237cb14a3feSDimitry Andric } 12380b57cec5SDimitry Andric 123906c3fb27SDimitry Andric _LIBCPP_HIDE_FROM_ABI iterator insert(const_iterator, value_type&& __x) { 12405f757f3fSDimitry Andric return __table_.__insert_unique(std::move(__x)).first; 12410b57cec5SDimitry Andric } 12420b57cec5SDimitry Andric 1243*0fca6ea1SDimitry Andric template <class _Pp, __enable_if_t<is_constructible<value_type, _Pp>::value, int> = 0> 1244cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI pair<iterator, bool> insert(_Pp&& __x) { 1245cb14a3feSDimitry Andric return __table_.__insert_unique(std::forward<_Pp>(__x)); 1246cb14a3feSDimitry Andric } 12470b57cec5SDimitry Andric 1248*0fca6ea1SDimitry Andric template <class _Pp, __enable_if_t<is_constructible<value_type, _Pp>::value, int> = 0> 1249cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI iterator insert(const_iterator, _Pp&& __x) { 12505f757f3fSDimitry Andric return insert(std::forward<_Pp>(__x)).first; 12510b57cec5SDimitry Andric } 12520b57cec5SDimitry Andric 12530b57cec5SDimitry Andric template <class... _Args> 1254cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI pair<iterator, bool> emplace(_Args&&... __args) { 12555f757f3fSDimitry Andric return __table_.__emplace_unique(std::forward<_Args>(__args)...); 12560b57cec5SDimitry Andric } 12570b57cec5SDimitry Andric 12580b57cec5SDimitry Andric template <class... _Args> 1259cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI iterator emplace_hint(const_iterator, _Args&&... __args) { 12605f757f3fSDimitry Andric return __table_.__emplace_unique(std::forward<_Args>(__args)...).first; 12610b57cec5SDimitry Andric } 12620b57cec5SDimitry Andric 12630b57cec5SDimitry Andric#endif // _LIBCPP_CXX03_LANG 12640b57cec5SDimitry Andric 126506c3fb27SDimitry Andric#if _LIBCPP_STD_VER >= 17 12660b57cec5SDimitry Andric template <class... _Args> 1267cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI pair<iterator, bool> try_emplace(const key_type& __k, _Args&&... __args) { 1268cb14a3feSDimitry Andric return __table_.__emplace_unique_key_args( 1269cb14a3feSDimitry Andric __k, piecewise_construct, std::forward_as_tuple(__k), std::forward_as_tuple(std::forward<_Args>(__args)...)); 12700b57cec5SDimitry Andric } 12710b57cec5SDimitry Andric 12720b57cec5SDimitry Andric template <class... _Args> 1273cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI pair<iterator, bool> try_emplace(key_type&& __k, _Args&&... __args) { 1274cb14a3feSDimitry Andric return __table_.__emplace_unique_key_args( 1275cb14a3feSDimitry Andric __k, 1276cb14a3feSDimitry Andric piecewise_construct, 12775f757f3fSDimitry Andric std::forward_as_tuple(std::move(__k)), 12785f757f3fSDimitry Andric std::forward_as_tuple(std::forward<_Args>(__args)...)); 12790b57cec5SDimitry Andric } 12800b57cec5SDimitry Andric 12810b57cec5SDimitry Andric template <class... _Args> 1282cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI iterator try_emplace(const_iterator, const key_type& __k, _Args&&... __args) { 12835f757f3fSDimitry Andric return try_emplace(__k, std::forward<_Args>(__args)...).first; 12840b57cec5SDimitry Andric } 12850b57cec5SDimitry Andric 12860b57cec5SDimitry Andric template <class... _Args> 1287cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI iterator try_emplace(const_iterator, key_type&& __k, _Args&&... __args) { 12885f757f3fSDimitry Andric return try_emplace(std::move(__k), std::forward<_Args>(__args)...).first; 12890b57cec5SDimitry Andric } 12900b57cec5SDimitry Andric 12910b57cec5SDimitry Andric template <class _Vp> 1292cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI pair<iterator, bool> insert_or_assign(const key_type& __k, _Vp&& __v) { 1293cb14a3feSDimitry Andric pair<iterator, bool> __res = __table_.__emplace_unique_key_args(__k, __k, std::forward<_Vp>(__v)); 12940b57cec5SDimitry Andric if (!__res.second) { 12955f757f3fSDimitry Andric __res.first->second = std::forward<_Vp>(__v); 12960b57cec5SDimitry Andric } 12970b57cec5SDimitry Andric return __res; 12980b57cec5SDimitry Andric } 12990b57cec5SDimitry Andric 13000b57cec5SDimitry Andric template <class _Vp> 1301cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI pair<iterator, bool> insert_or_assign(key_type&& __k, _Vp&& __v) { 1302cb14a3feSDimitry Andric pair<iterator, bool> __res = __table_.__emplace_unique_key_args(__k, std::move(__k), std::forward<_Vp>(__v)); 13030b57cec5SDimitry Andric if (!__res.second) { 13045f757f3fSDimitry Andric __res.first->second = std::forward<_Vp>(__v); 13050b57cec5SDimitry Andric } 13060b57cec5SDimitry Andric return __res; 13070b57cec5SDimitry Andric } 13080b57cec5SDimitry Andric 13090b57cec5SDimitry Andric template <class _Vp> 1310cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI iterator insert_or_assign(const_iterator, const key_type& __k, _Vp&& __v) { 13115f757f3fSDimitry Andric return insert_or_assign(__k, std::forward<_Vp>(__v)).first; 13120b57cec5SDimitry Andric } 13130b57cec5SDimitry Andric 13140b57cec5SDimitry Andric template <class _Vp> 1315cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI iterator insert_or_assign(const_iterator, key_type&& __k, _Vp&& __v) { 13165f757f3fSDimitry Andric return insert_or_assign(std::move(__k), std::forward<_Vp>(__v)).first; 13170b57cec5SDimitry Andric } 131806c3fb27SDimitry Andric#endif // _LIBCPP_STD_VER >= 17 13190b57cec5SDimitry Andric 1320cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI iterator erase(const_iterator __p) { return __table_.erase(__p.__i_); } 1321cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI iterator erase(iterator __p) { return __table_.erase(__p.__i_); } 1322cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI size_type erase(const key_type& __k) { return __table_.__erase_unique(__k); } 1323cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI iterator erase(const_iterator __first, const_iterator __last) { 1324cb14a3feSDimitry Andric return __table_.erase(__first.__i_, __last.__i_); 1325cb14a3feSDimitry Andric } 1326cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI void clear() _NOEXCEPT { __table_.clear(); } 13270b57cec5SDimitry Andric 132806c3fb27SDimitry Andric#if _LIBCPP_STD_VER >= 17 1329cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI insert_return_type insert(node_type&& __nh) { 133006c3fb27SDimitry Andric _LIBCPP_ASSERT_COMPATIBLE_ALLOCATOR(__nh.empty() || __nh.get_allocator() == get_allocator(), 13310b57cec5SDimitry Andric "node_type with incompatible allocator passed to unordered_map::insert()"); 1332cb14a3feSDimitry Andric return __table_.template __node_handle_insert_unique< node_type, insert_return_type>(std::move(__nh)); 13330b57cec5SDimitry Andric } 1334cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI iterator insert(const_iterator __hint, node_type&& __nh) { 133506c3fb27SDimitry Andric _LIBCPP_ASSERT_COMPATIBLE_ALLOCATOR(__nh.empty() || __nh.get_allocator() == get_allocator(), 13360b57cec5SDimitry Andric "node_type with incompatible allocator passed to unordered_map::insert()"); 1337cb14a3feSDimitry Andric return __table_.template __node_handle_insert_unique<node_type>(__hint.__i_, std::move(__nh)); 13380b57cec5SDimitry Andric } 1339cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI node_type extract(key_type const& __key) { 13400b57cec5SDimitry Andric return __table_.template __node_handle_extract<node_type>(__key); 13410b57cec5SDimitry Andric } 1342cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI node_type extract(const_iterator __it) { 1343cb14a3feSDimitry Andric return __table_.template __node_handle_extract<node_type>(__it.__i_); 13440b57cec5SDimitry Andric } 13450b57cec5SDimitry Andric 13460b57cec5SDimitry Andric template <class _H2, class _P2> 1347cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI void merge(unordered_map<key_type, mapped_type, _H2, _P2, allocator_type>& __source) { 1348cb14a3feSDimitry Andric _LIBCPP_ASSERT_COMPATIBLE_ALLOCATOR( 1349cb14a3feSDimitry Andric __source.get_allocator() == get_allocator(), "merging container with incompatible allocator"); 13500b57cec5SDimitry Andric return __table_.__node_handle_merge_unique(__source.__table_); 13510b57cec5SDimitry Andric } 13520b57cec5SDimitry Andric template <class _H2, class _P2> 1353cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI void merge(unordered_map<key_type, mapped_type, _H2, _P2, allocator_type>&& __source) { 1354cb14a3feSDimitry Andric _LIBCPP_ASSERT_COMPATIBLE_ALLOCATOR( 1355cb14a3feSDimitry Andric __source.get_allocator() == get_allocator(), "merging container with incompatible allocator"); 13560b57cec5SDimitry Andric return __table_.__node_handle_merge_unique(__source.__table_); 13570b57cec5SDimitry Andric } 13580b57cec5SDimitry Andric template <class _H2, class _P2> 1359cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI void merge(unordered_multimap<key_type, mapped_type, _H2, _P2, allocator_type>& __source) { 1360cb14a3feSDimitry Andric _LIBCPP_ASSERT_COMPATIBLE_ALLOCATOR( 1361cb14a3feSDimitry Andric __source.get_allocator() == get_allocator(), "merging container with incompatible allocator"); 13620b57cec5SDimitry Andric return __table_.__node_handle_merge_unique(__source.__table_); 13630b57cec5SDimitry Andric } 13640b57cec5SDimitry Andric template <class _H2, class _P2> 1365cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI void merge(unordered_multimap<key_type, mapped_type, _H2, _P2, allocator_type>&& __source) { 1366cb14a3feSDimitry Andric _LIBCPP_ASSERT_COMPATIBLE_ALLOCATOR( 1367cb14a3feSDimitry Andric __source.get_allocator() == get_allocator(), "merging container with incompatible allocator"); 13680b57cec5SDimitry Andric return __table_.__node_handle_merge_unique(__source.__table_); 13690b57cec5SDimitry Andric } 13700b57cec5SDimitry Andric#endif 13710b57cec5SDimitry Andric 1372*0fca6ea1SDimitry Andric _LIBCPP_HIDE_FROM_ABI void swap(unordered_map& __u) _NOEXCEPT_(__is_nothrow_swappable_v<__table>) { 1373cb14a3feSDimitry Andric __table_.swap(__u.__table_); 1374cb14a3feSDimitry Andric } 13750b57cec5SDimitry Andric 1376cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI hasher hash_function() const { return __table_.hash_function().hash_function(); } 1377cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI key_equal key_eq() const { return __table_.key_eq().key_eq(); } 13780b57cec5SDimitry Andric 1379cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI iterator find(const key_type& __k) { return __table_.find(__k); } 1380cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI const_iterator find(const key_type& __k) const { return __table_.find(__k); } 138106c3fb27SDimitry Andric#if _LIBCPP_STD_VER >= 20 1382*0fca6ea1SDimitry Andric template <class _K2, enable_if_t<__is_transparent_v<hasher, _K2> && __is_transparent_v<key_equal, _K2>>* = nullptr> 1383cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI iterator find(const _K2& __k) { 1384cb14a3feSDimitry Andric return __table_.find(__k); 1385cb14a3feSDimitry Andric } 1386*0fca6ea1SDimitry Andric template <class _K2, enable_if_t<__is_transparent_v<hasher, _K2> && __is_transparent_v<key_equal, _K2>>* = nullptr> 1387cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI const_iterator find(const _K2& __k) const { 1388cb14a3feSDimitry Andric return __table_.find(__k); 1389cb14a3feSDimitry Andric } 139006c3fb27SDimitry Andric#endif // _LIBCPP_STD_VER >= 20 1391e8d8bef9SDimitry Andric 1392cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI size_type count(const key_type& __k) const { return __table_.__count_unique(__k); } 139306c3fb27SDimitry Andric#if _LIBCPP_STD_VER >= 20 1394*0fca6ea1SDimitry Andric template <class _K2, enable_if_t<__is_transparent_v<hasher, _K2> && __is_transparent_v<key_equal, _K2>>* = nullptr> 1395cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI size_type count(const _K2& __k) const { 1396cb14a3feSDimitry Andric return __table_.__count_unique(__k); 1397cb14a3feSDimitry Andric } 139806c3fb27SDimitry Andric#endif // _LIBCPP_STD_VER >= 20 1399349cc55cSDimitry Andric 140006c3fb27SDimitry Andric#if _LIBCPP_STD_VER >= 20 1401cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI bool contains(const key_type& __k) const { return find(__k) != end(); } 1402e8d8bef9SDimitry Andric 1403*0fca6ea1SDimitry Andric template <class _K2, enable_if_t<__is_transparent_v<hasher, _K2> && __is_transparent_v<key_equal, _K2>>* = nullptr> 1404cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI bool contains(const _K2& __k) const { 1405cb14a3feSDimitry Andric return find(__k) != end(); 1406cb14a3feSDimitry Andric } 140706c3fb27SDimitry Andric#endif // _LIBCPP_STD_VER >= 20 1408349cc55cSDimitry Andric 1409cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI pair<iterator, iterator> equal_range(const key_type& __k) { 1410cb14a3feSDimitry Andric return __table_.__equal_range_unique(__k); 1411cb14a3feSDimitry Andric } 1412cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI pair<const_iterator, const_iterator> equal_range(const key_type& __k) const { 1413cb14a3feSDimitry Andric return __table_.__equal_range_unique(__k); 1414cb14a3feSDimitry Andric } 141506c3fb27SDimitry Andric#if _LIBCPP_STD_VER >= 20 1416*0fca6ea1SDimitry Andric template <class _K2, enable_if_t<__is_transparent_v<hasher, _K2> && __is_transparent_v<key_equal, _K2>>* = nullptr> 1417cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI pair<iterator, iterator> equal_range(const _K2& __k) { 1418cb14a3feSDimitry Andric return __table_.__equal_range_unique(__k); 1419cb14a3feSDimitry Andric } 1420*0fca6ea1SDimitry Andric template <class _K2, enable_if_t<__is_transparent_v<hasher, _K2> && __is_transparent_v<key_equal, _K2>>* = nullptr> 1421cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI pair<const_iterator, const_iterator> equal_range(const _K2& __k) const { 1422cb14a3feSDimitry Andric return __table_.__equal_range_unique(__k); 1423cb14a3feSDimitry Andric } 142406c3fb27SDimitry Andric#endif // _LIBCPP_STD_VER >= 20 14250b57cec5SDimitry Andric 142606c3fb27SDimitry Andric _LIBCPP_HIDE_FROM_ABI mapped_type& operator[](const key_type& __k); 14270b57cec5SDimitry Andric#ifndef _LIBCPP_CXX03_LANG 142806c3fb27SDimitry Andric _LIBCPP_HIDE_FROM_ABI mapped_type& operator[](key_type&& __k); 14290b57cec5SDimitry Andric#endif 14300b57cec5SDimitry Andric 143106c3fb27SDimitry Andric _LIBCPP_HIDE_FROM_ABI mapped_type& at(const key_type& __k); 143206c3fb27SDimitry Andric _LIBCPP_HIDE_FROM_ABI const mapped_type& at(const key_type& __k) const; 14330b57cec5SDimitry Andric 1434cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI size_type bucket_count() const _NOEXCEPT { return __table_.bucket_count(); } 1435cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI size_type max_bucket_count() const _NOEXCEPT { return __table_.max_bucket_count(); } 14360b57cec5SDimitry Andric 1437cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI size_type bucket_size(size_type __n) const { return __table_.bucket_size(__n); } 1438cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI size_type bucket(const key_type& __k) const { return __table_.bucket(__k); } 14390b57cec5SDimitry Andric 1440cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI local_iterator begin(size_type __n) { return __table_.begin(__n); } 1441cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI local_iterator end(size_type __n) { return __table_.end(__n); } 1442cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI const_local_iterator begin(size_type __n) const { return __table_.cbegin(__n); } 1443cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI const_local_iterator end(size_type __n) const { return __table_.cend(__n); } 1444cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI const_local_iterator cbegin(size_type __n) const { return __table_.cbegin(__n); } 1445cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI const_local_iterator cend(size_type __n) const { return __table_.cend(__n); } 14460b57cec5SDimitry Andric 1447cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI float load_factor() const _NOEXCEPT { return __table_.load_factor(); } 1448cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI float max_load_factor() const _NOEXCEPT { return __table_.max_load_factor(); } 1449cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI void max_load_factor(float __mlf) { __table_.max_load_factor(__mlf); } 1450cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI void rehash(size_type __n) { __table_.__rehash_unique(__n); } 1451cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI void reserve(size_type __n) { __table_.__reserve_unique(__n); } 14520b57cec5SDimitry Andric 14530b57cec5SDimitry Andricprivate: 14540b57cec5SDimitry Andric#ifdef _LIBCPP_CXX03_LANG 145506c3fb27SDimitry Andric _LIBCPP_HIDE_FROM_ABI __node_holder __construct_node_with_key(const key_type& __k); 14560b57cec5SDimitry Andric#endif 14570b57cec5SDimitry Andric}; 14580b57cec5SDimitry Andric 1459349cc55cSDimitry Andric#if _LIBCPP_STD_VER >= 17 14600b57cec5SDimitry Andrictemplate <class _InputIterator, 14610b57cec5SDimitry Andric class _Hash = hash<__iter_key_type<_InputIterator>>, 14620b57cec5SDimitry Andric class _Pred = equal_to<__iter_key_type<_InputIterator>>, 14630b57cec5SDimitry Andric class _Allocator = allocator<__iter_to_alloc_type<_InputIterator>>, 146406c3fb27SDimitry Andric class = enable_if_t<__has_input_iterator_category<_InputIterator>::value>, 1465349cc55cSDimitry Andric class = enable_if_t<!__is_allocator<_Hash>::value>, 1466349cc55cSDimitry Andric class = enable_if_t<!is_integral<_Hash>::value>, 1467349cc55cSDimitry Andric class = enable_if_t<!__is_allocator<_Pred>::value>, 1468349cc55cSDimitry Andric class = enable_if_t<__is_allocator<_Allocator>::value>> 1469cb14a3feSDimitry Andricunordered_map(_InputIterator, 1470cb14a3feSDimitry Andric _InputIterator, 1471cb14a3feSDimitry Andric typename allocator_traits<_Allocator>::size_type = 0, 1472cb14a3feSDimitry Andric _Hash = _Hash(), 1473cb14a3feSDimitry Andric _Pred = _Pred(), 1474cb14a3feSDimitry Andric _Allocator = _Allocator()) 14750b57cec5SDimitry Andric -> unordered_map<__iter_key_type<_InputIterator>, __iter_mapped_type<_InputIterator>, _Hash, _Pred, _Allocator>; 14760b57cec5SDimitry Andric 147706c3fb27SDimitry Andric# if _LIBCPP_STD_VER >= 23 147806c3fb27SDimitry Andrictemplate <ranges::input_range _Range, 147906c3fb27SDimitry Andric class _Hash = hash<__range_key_type<_Range>>, 148006c3fb27SDimitry Andric class _Pred = equal_to<__range_key_type<_Range>>, 148106c3fb27SDimitry Andric class _Allocator = allocator<__range_to_alloc_type<_Range>>, 148206c3fb27SDimitry Andric class = enable_if_t<!__is_allocator<_Hash>::value>, 148306c3fb27SDimitry Andric class = enable_if_t<!is_integral<_Hash>::value>, 148406c3fb27SDimitry Andric class = enable_if_t<!__is_allocator<_Pred>::value>, 148506c3fb27SDimitry Andric class = enable_if_t<__is_allocator<_Allocator>::value>> 1486cb14a3feSDimitry Andricunordered_map(from_range_t, 1487cb14a3feSDimitry Andric _Range&&, 1488cb14a3feSDimitry Andric typename allocator_traits<_Allocator>::size_type = 0, 1489cb14a3feSDimitry Andric _Hash = _Hash(), 1490cb14a3feSDimitry Andric _Pred = _Pred(), 1491cb14a3feSDimitry Andric _Allocator = _Allocator()) 149206c3fb27SDimitry Andric -> unordered_map<__range_key_type<_Range>, __range_mapped_type<_Range>, _Hash, _Pred, _Allocator>; // C++23 149306c3fb27SDimitry Andric# endif 149406c3fb27SDimitry Andric 1495cb14a3feSDimitry Andrictemplate <class _Key, 1496cb14a3feSDimitry Andric class _Tp, 1497cb14a3feSDimitry Andric class _Hash = hash<remove_const_t<_Key>>, 14980b57cec5SDimitry Andric class _Pred = equal_to<remove_const_t<_Key>>, 14990b57cec5SDimitry Andric class _Allocator = allocator<pair<const _Key, _Tp>>, 1500349cc55cSDimitry Andric class = enable_if_t<!__is_allocator<_Hash>::value>, 1501349cc55cSDimitry Andric class = enable_if_t<!is_integral<_Hash>::value>, 1502349cc55cSDimitry Andric class = enable_if_t<!__is_allocator<_Pred>::value>, 1503349cc55cSDimitry Andric class = enable_if_t<__is_allocator<_Allocator>::value>> 1504cb14a3feSDimitry Andricunordered_map(initializer_list<pair<_Key, _Tp>>, 1505cb14a3feSDimitry Andric typename allocator_traits<_Allocator>::size_type = 0, 1506cb14a3feSDimitry Andric _Hash = _Hash(), 1507cb14a3feSDimitry Andric _Pred = _Pred(), 1508cb14a3feSDimitry Andric _Allocator = _Allocator()) -> unordered_map<remove_const_t<_Key>, _Tp, _Hash, _Pred, _Allocator>; 15090b57cec5SDimitry Andric 1510cb14a3feSDimitry Andrictemplate <class _InputIterator, 1511cb14a3feSDimitry Andric class _Allocator, 151206c3fb27SDimitry Andric class = enable_if_t<__has_input_iterator_category<_InputIterator>::value>, 1513349cc55cSDimitry Andric class = enable_if_t<__is_allocator<_Allocator>::value>> 15140b57cec5SDimitry Andricunordered_map(_InputIterator, _InputIterator, typename allocator_traits<_Allocator>::size_type, _Allocator) 1515cb14a3feSDimitry Andric -> unordered_map<__iter_key_type<_InputIterator>, 1516cb14a3feSDimitry Andric __iter_mapped_type<_InputIterator>, 1517cb14a3feSDimitry Andric hash<__iter_key_type<_InputIterator>>, 1518cb14a3feSDimitry Andric equal_to<__iter_key_type<_InputIterator>>, 1519cb14a3feSDimitry Andric _Allocator>; 15200b57cec5SDimitry Andric 1521cb14a3feSDimitry Andrictemplate <class _InputIterator, 1522cb14a3feSDimitry Andric class _Allocator, 152306c3fb27SDimitry Andric class = enable_if_t<__has_input_iterator_category<_InputIterator>::value>, 1524349cc55cSDimitry Andric class = enable_if_t<__is_allocator<_Allocator>::value>> 15250b57cec5SDimitry Andricunordered_map(_InputIterator, _InputIterator, _Allocator) 1526cb14a3feSDimitry Andric -> unordered_map<__iter_key_type<_InputIterator>, 1527cb14a3feSDimitry Andric __iter_mapped_type<_InputIterator>, 1528cb14a3feSDimitry Andric hash<__iter_key_type<_InputIterator>>, 1529cb14a3feSDimitry Andric equal_to<__iter_key_type<_InputIterator>>, 1530cb14a3feSDimitry Andric _Allocator>; 15310b57cec5SDimitry Andric 1532cb14a3feSDimitry Andrictemplate <class _InputIterator, 1533cb14a3feSDimitry Andric class _Hash, 1534cb14a3feSDimitry Andric class _Allocator, 153506c3fb27SDimitry Andric class = enable_if_t<__has_input_iterator_category<_InputIterator>::value>, 1536349cc55cSDimitry Andric class = enable_if_t<!__is_allocator<_Hash>::value>, 1537349cc55cSDimitry Andric class = enable_if_t<!is_integral<_Hash>::value>, 1538349cc55cSDimitry Andric class = enable_if_t<__is_allocator<_Allocator>::value>> 15390b57cec5SDimitry Andricunordered_map(_InputIterator, _InputIterator, typename allocator_traits<_Allocator>::size_type, _Hash, _Allocator) 1540cb14a3feSDimitry Andric -> unordered_map<__iter_key_type<_InputIterator>, 1541cb14a3feSDimitry Andric __iter_mapped_type<_InputIterator>, 1542cb14a3feSDimitry Andric _Hash, 1543cb14a3feSDimitry Andric equal_to<__iter_key_type<_InputIterator>>, 1544cb14a3feSDimitry Andric _Allocator>; 15450b57cec5SDimitry Andric 154606c3fb27SDimitry Andric# if _LIBCPP_STD_VER >= 23 154706c3fb27SDimitry Andric 1548cb14a3feSDimitry Andrictemplate <ranges::input_range _Range, class _Allocator, class = enable_if_t<__is_allocator<_Allocator>::value>> 154906c3fb27SDimitry Andricunordered_map(from_range_t, _Range&&, typename allocator_traits<_Allocator>::size_type, _Allocator) 1550cb14a3feSDimitry Andric -> unordered_map<__range_key_type<_Range>, 1551cb14a3feSDimitry Andric __range_mapped_type<_Range>, 1552cb14a3feSDimitry Andric hash<__range_key_type<_Range>>, 1553cb14a3feSDimitry Andric equal_to<__range_key_type<_Range>>, 1554cb14a3feSDimitry Andric _Allocator>; 155506c3fb27SDimitry Andric 1556cb14a3feSDimitry Andrictemplate <ranges::input_range _Range, class _Allocator, class = enable_if_t<__is_allocator<_Allocator>::value>> 155706c3fb27SDimitry Andricunordered_map(from_range_t, _Range&&, _Allocator) 1558cb14a3feSDimitry Andric -> unordered_map<__range_key_type<_Range>, 1559cb14a3feSDimitry Andric __range_mapped_type<_Range>, 1560cb14a3feSDimitry Andric hash<__range_key_type<_Range>>, 1561cb14a3feSDimitry Andric equal_to<__range_key_type<_Range>>, 1562cb14a3feSDimitry Andric _Allocator>; 156306c3fb27SDimitry Andric 1564cb14a3feSDimitry Andrictemplate <ranges::input_range _Range, 1565cb14a3feSDimitry Andric class _Hash, 1566cb14a3feSDimitry Andric class _Allocator, 156706c3fb27SDimitry Andric class = enable_if_t<!__is_allocator<_Hash>::value>, 156806c3fb27SDimitry Andric class = enable_if_t<!is_integral<_Hash>::value>, 156906c3fb27SDimitry Andric class = enable_if_t<__is_allocator<_Allocator>::value>> 157006c3fb27SDimitry Andricunordered_map(from_range_t, _Range&&, typename allocator_traits<_Allocator>::size_type, _Hash, _Allocator) 1571cb14a3feSDimitry Andric -> unordered_map<__range_key_type<_Range>, 1572cb14a3feSDimitry Andric __range_mapped_type<_Range>, 1573cb14a3feSDimitry Andric _Hash, 1574cb14a3feSDimitry Andric equal_to<__range_key_type<_Range>>, 1575cb14a3feSDimitry Andric _Allocator>; 157606c3fb27SDimitry Andric 157706c3fb27SDimitry Andric# endif 157806c3fb27SDimitry Andric 1579cb14a3feSDimitry Andrictemplate <class _Key, class _Tp, class _Allocator, class = enable_if_t<__is_allocator<_Allocator>::value>> 15800b57cec5SDimitry Andricunordered_map(initializer_list<pair<_Key, _Tp>>, typename allocator_traits<_Allocator>::size_type, _Allocator) 1581cb14a3feSDimitry Andric -> unordered_map<remove_const_t<_Key>, _Tp, hash<remove_const_t<_Key>>, equal_to<remove_const_t<_Key>>, _Allocator>; 15820b57cec5SDimitry Andric 1583cb14a3feSDimitry Andrictemplate <class _Key, class _Tp, class _Allocator, class = enable_if_t<__is_allocator<_Allocator>::value>> 15840b57cec5SDimitry Andricunordered_map(initializer_list<pair<_Key, _Tp>>, _Allocator) 1585cb14a3feSDimitry Andric -> unordered_map<remove_const_t<_Key>, _Tp, hash<remove_const_t<_Key>>, equal_to<remove_const_t<_Key>>, _Allocator>; 15860b57cec5SDimitry Andric 1587cb14a3feSDimitry Andrictemplate <class _Key, 1588cb14a3feSDimitry Andric class _Tp, 1589cb14a3feSDimitry Andric class _Hash, 1590cb14a3feSDimitry Andric class _Allocator, 1591349cc55cSDimitry Andric class = enable_if_t<!__is_allocator<_Hash>::value>, 1592349cc55cSDimitry Andric class = enable_if_t<!is_integral<_Hash>::value>, 1593349cc55cSDimitry Andric class = enable_if_t<__is_allocator<_Allocator>::value>> 15940b57cec5SDimitry Andricunordered_map(initializer_list<pair<_Key, _Tp>>, typename allocator_traits<_Allocator>::size_type, _Hash, _Allocator) 1595cb14a3feSDimitry Andric -> unordered_map<remove_const_t<_Key>, _Tp, _Hash, equal_to<remove_const_t<_Key>>, _Allocator>; 15960b57cec5SDimitry Andric#endif 15970b57cec5SDimitry Andric 15980b57cec5SDimitry Andrictemplate <class _Key, class _Tp, class _Hash, class _Pred, class _Alloc> 1599cb14a3feSDimitry Andricunordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>::unordered_map(size_type __n, const hasher& __hf, const key_equal& __eql) 1600cb14a3feSDimitry Andric : __table_(__hf, __eql) { 1601753f127fSDimitry Andric __table_.__rehash_unique(__n); 16020b57cec5SDimitry Andric} 16030b57cec5SDimitry Andric 16040b57cec5SDimitry Andrictemplate <class _Key, class _Tp, class _Hash, class _Pred, class _Alloc> 16050b57cec5SDimitry Andricunordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>::unordered_map( 1606cb14a3feSDimitry Andric size_type __n, const hasher& __hf, const key_equal& __eql, const allocator_type& __a) 1607cb14a3feSDimitry Andric : __table_(__hf, __eql, typename __table::allocator_type(__a)) { 1608cb14a3feSDimitry Andric __table_.__rehash_unique(__n); 1609cb14a3feSDimitry Andric} 1610cb14a3feSDimitry Andric 1611cb14a3feSDimitry Andrictemplate <class _Key, class _Tp, class _Hash, class _Pred, class _Alloc> 1612cb14a3feSDimitry Andricinline unordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>::unordered_map(const allocator_type& __a) 1613cb14a3feSDimitry Andric : __table_(typename __table::allocator_type(__a)) {} 1614cb14a3feSDimitry Andric 1615cb14a3feSDimitry Andrictemplate <class _Key, class _Tp, class _Hash, class _Pred, class _Alloc> 1616cb14a3feSDimitry Andrictemplate <class _InputIterator> 1617cb14a3feSDimitry Andricunordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>::unordered_map(_InputIterator __first, _InputIterator __last) { 1618cb14a3feSDimitry Andric insert(__first, __last); 1619cb14a3feSDimitry Andric} 1620cb14a3feSDimitry Andric 1621cb14a3feSDimitry Andrictemplate <class _Key, class _Tp, class _Hash, class _Pred, class _Alloc> 1622cb14a3feSDimitry Andrictemplate <class _InputIterator> 1623cb14a3feSDimitry Andricunordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>::unordered_map( 1624cb14a3feSDimitry Andric _InputIterator __first, _InputIterator __last, size_type __n, const hasher& __hf, const key_equal& __eql) 1625cb14a3feSDimitry Andric : __table_(__hf, __eql) { 1626cb14a3feSDimitry Andric __table_.__rehash_unique(__n); 1627cb14a3feSDimitry Andric insert(__first, __last); 1628cb14a3feSDimitry Andric} 1629cb14a3feSDimitry Andric 1630cb14a3feSDimitry Andrictemplate <class _Key, class _Tp, class _Hash, class _Pred, class _Alloc> 1631cb14a3feSDimitry Andrictemplate <class _InputIterator> 1632cb14a3feSDimitry Andricunordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>::unordered_map( 1633cb14a3feSDimitry Andric _InputIterator __first, 1634cb14a3feSDimitry Andric _InputIterator __last, 1635cb14a3feSDimitry Andric size_type __n, 1636cb14a3feSDimitry Andric const hasher& __hf, 1637cb14a3feSDimitry Andric const key_equal& __eql, 16380b57cec5SDimitry Andric const allocator_type& __a) 1639cb14a3feSDimitry Andric : __table_(__hf, __eql, typename __table::allocator_type(__a)) { 1640753f127fSDimitry Andric __table_.__rehash_unique(__n); 16410b57cec5SDimitry Andric insert(__first, __last); 16420b57cec5SDimitry Andric} 16430b57cec5SDimitry Andric 16440b57cec5SDimitry Andrictemplate <class _Key, class _Tp, class _Hash, class _Pred, class _Alloc> 1645cb14a3feSDimitry Andricunordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>::unordered_map(const unordered_map& __u) : __table_(__u.__table_) { 1646753f127fSDimitry Andric __table_.__rehash_unique(__u.bucket_count()); 16470b57cec5SDimitry Andric insert(__u.begin(), __u.end()); 16480b57cec5SDimitry Andric} 16490b57cec5SDimitry Andric 16500b57cec5SDimitry Andrictemplate <class _Key, class _Tp, class _Hash, class _Pred, class _Alloc> 1651cb14a3feSDimitry Andricunordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>::unordered_map(const unordered_map& __u, const allocator_type& __a) 1652cb14a3feSDimitry Andric : __table_(__u.__table_, typename __table::allocator_type(__a)) { 1653753f127fSDimitry Andric __table_.__rehash_unique(__u.bucket_count()); 16540b57cec5SDimitry Andric insert(__u.begin(), __u.end()); 16550b57cec5SDimitry Andric} 16560b57cec5SDimitry Andric 16570b57cec5SDimitry Andric#ifndef _LIBCPP_CXX03_LANG 16580b57cec5SDimitry Andric 16590b57cec5SDimitry Andrictemplate <class _Key, class _Tp, class _Hash, class _Pred, class _Alloc> 1660cb14a3feSDimitry Andricinline unordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>::unordered_map(unordered_map&& __u) 16610b57cec5SDimitry Andric _NOEXCEPT_(is_nothrow_move_constructible<__table>::value) 1662cb14a3feSDimitry Andric : __table_(std::move(__u.__table_)) {} 16630b57cec5SDimitry Andric 16640b57cec5SDimitry Andrictemplate <class _Key, class _Tp, class _Hash, class _Pred, class _Alloc> 1665cb14a3feSDimitry Andricunordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>::unordered_map(unordered_map&& __u, const allocator_type& __a) 1666cb14a3feSDimitry Andric : __table_(std::move(__u.__table_), typename __table::allocator_type(__a)) { 1667cb14a3feSDimitry Andric if (__a != __u.get_allocator()) { 16680b57cec5SDimitry Andric iterator __i = __u.begin(); 16690b57cec5SDimitry Andric while (__u.size() != 0) { 1670cb14a3feSDimitry Andric __table_.__emplace_unique(__u.__table_.remove((__i++).__i_)->__get_value().__move()); 16710b57cec5SDimitry Andric } 16720b57cec5SDimitry Andric } 16730b57cec5SDimitry Andric} 16740b57cec5SDimitry Andric 16750b57cec5SDimitry Andrictemplate <class _Key, class _Tp, class _Hash, class _Pred, class _Alloc> 1676cb14a3feSDimitry Andricunordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>::unordered_map(initializer_list<value_type> __il) { 16770b57cec5SDimitry Andric insert(__il.begin(), __il.end()); 16780b57cec5SDimitry Andric} 16790b57cec5SDimitry Andric 16800b57cec5SDimitry Andrictemplate <class _Key, class _Tp, class _Hash, class _Pred, class _Alloc> 16810b57cec5SDimitry Andricunordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>::unordered_map( 1682cb14a3feSDimitry Andric initializer_list<value_type> __il, size_type __n, const hasher& __hf, const key_equal& __eql) 1683cb14a3feSDimitry Andric : __table_(__hf, __eql) { 1684753f127fSDimitry Andric __table_.__rehash_unique(__n); 16850b57cec5SDimitry Andric insert(__il.begin(), __il.end()); 16860b57cec5SDimitry Andric} 16870b57cec5SDimitry Andric 16880b57cec5SDimitry Andrictemplate <class _Key, class _Tp, class _Hash, class _Pred, class _Alloc> 16890b57cec5SDimitry Andricunordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>::unordered_map( 1690cb14a3feSDimitry Andric initializer_list<value_type> __il, 1691cb14a3feSDimitry Andric size_type __n, 1692cb14a3feSDimitry Andric const hasher& __hf, 1693cb14a3feSDimitry Andric const key_equal& __eql, 1694cb14a3feSDimitry Andric const allocator_type& __a) 1695cb14a3feSDimitry Andric : __table_(__hf, __eql, typename __table::allocator_type(__a)) { 1696753f127fSDimitry Andric __table_.__rehash_unique(__n); 16970b57cec5SDimitry Andric insert(__il.begin(), __il.end()); 16980b57cec5SDimitry Andric} 16990b57cec5SDimitry Andric 17000b57cec5SDimitry Andrictemplate <class _Key, class _Tp, class _Hash, class _Pred, class _Alloc> 1701cb14a3feSDimitry Andricinline unordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>& 17020b57cec5SDimitry Andricunordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>::operator=(unordered_map&& __u) 1703cb14a3feSDimitry Andric _NOEXCEPT_(is_nothrow_move_assignable<__table>::value) { 17045f757f3fSDimitry Andric __table_ = std::move(__u.__table_); 17050b57cec5SDimitry Andric return *this; 17060b57cec5SDimitry Andric} 17070b57cec5SDimitry Andric 17080b57cec5SDimitry Andrictemplate <class _Key, class _Tp, class _Hash, class _Pred, class _Alloc> 1709cb14a3feSDimitry Andricinline unordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>& 1710cb14a3feSDimitry Andricunordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>::operator=(initializer_list<value_type> __il) { 17110b57cec5SDimitry Andric __table_.__assign_unique(__il.begin(), __il.end()); 17120b57cec5SDimitry Andric return *this; 17130b57cec5SDimitry Andric} 17140b57cec5SDimitry Andric 17150b57cec5SDimitry Andric#endif // _LIBCPP_CXX03_LANG 17160b57cec5SDimitry Andric 17170b57cec5SDimitry Andrictemplate <class _Key, class _Tp, class _Hash, class _Pred, class _Alloc> 17180b57cec5SDimitry Andrictemplate <class _InputIterator> 1719cb14a3feSDimitry Andricinline void unordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>::insert(_InputIterator __first, _InputIterator __last) { 17200b57cec5SDimitry Andric for (; __first != __last; ++__first) 17210b57cec5SDimitry Andric __table_.__insert_unique(*__first); 17220b57cec5SDimitry Andric} 17230b57cec5SDimitry Andric 17240b57cec5SDimitry Andric#ifndef _LIBCPP_CXX03_LANG 17250b57cec5SDimitry Andric 17260b57cec5SDimitry Andrictemplate <class _Key, class _Tp, class _Hash, class _Pred, class _Alloc> 1727cb14a3feSDimitry Andric_Tp& unordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>::operator[](const key_type& __k) { 1728cb14a3feSDimitry Andric return __table_ 1729cb14a3feSDimitry Andric .__emplace_unique_key_args(__k, piecewise_construct, std::forward_as_tuple(__k), std::forward_as_tuple()) 1730cb14a3feSDimitry Andric .first->__get_value() 1731cb14a3feSDimitry Andric .second; 17320b57cec5SDimitry Andric} 17330b57cec5SDimitry Andric 17340b57cec5SDimitry Andrictemplate <class _Key, class _Tp, class _Hash, class _Pred, class _Alloc> 1735cb14a3feSDimitry Andric_Tp& unordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>::operator[](key_type&& __k) { 1736cb14a3feSDimitry Andric return __table_ 1737cb14a3feSDimitry Andric .__emplace_unique_key_args( 1738cb14a3feSDimitry Andric __k, piecewise_construct, std::forward_as_tuple(std::move(__k)), std::forward_as_tuple()) 1739cb14a3feSDimitry Andric .first->__get_value() 1740cb14a3feSDimitry Andric .second; 17410b57cec5SDimitry Andric} 17420b57cec5SDimitry Andric#else // _LIBCPP_CXX03_LANG 17430b57cec5SDimitry Andric 17440b57cec5SDimitry Andrictemplate <class _Key, class _Tp, class _Hash, class _Pred, class _Alloc> 17450b57cec5SDimitry Andrictypename unordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>::__node_holder 1746cb14a3feSDimitry Andricunordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>::__construct_node_with_key(const key_type& __k) { 17470b57cec5SDimitry Andric __node_allocator& __na = __table_.__node_alloc(); 17480b57cec5SDimitry Andric __node_holder __h(__node_traits::allocate(__na, 1), _Dp(__na)); 17495f757f3fSDimitry Andric __node_traits::construct(__na, std::addressof(__h->__get_value().__get_value().first), __k); 17500b57cec5SDimitry Andric __h.get_deleter().__first_constructed = true; 17515f757f3fSDimitry Andric __node_traits::construct(__na, std::addressof(__h->__get_value().__get_value().second)); 17520b57cec5SDimitry Andric __h.get_deleter().__second_constructed = true; 1753e8d8bef9SDimitry Andric return __h; 17540b57cec5SDimitry Andric} 17550b57cec5SDimitry Andric 17560b57cec5SDimitry Andrictemplate <class _Key, class _Tp, class _Hash, class _Pred, class _Alloc> 1757cb14a3feSDimitry Andric_Tp& unordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>::operator[](const key_type& __k) { 17580b57cec5SDimitry Andric iterator __i = find(__k); 17590b57cec5SDimitry Andric if (__i != end()) 17600b57cec5SDimitry Andric return __i->second; 17610b57cec5SDimitry Andric __node_holder __h = __construct_node_with_key(__k); 17620b57cec5SDimitry Andric pair<iterator, bool> __r = __table_.__node_insert_unique(__h.get()); 17630b57cec5SDimitry Andric __h.release(); 17640b57cec5SDimitry Andric return __r.first->second; 17650b57cec5SDimitry Andric} 17660b57cec5SDimitry Andric 1767fe6060f1SDimitry Andric#endif // _LIBCPP_CXX03_LANG 17680b57cec5SDimitry Andric 17690b57cec5SDimitry Andrictemplate <class _Key, class _Tp, class _Hash, class _Pred, class _Alloc> 1770cb14a3feSDimitry Andric_Tp& unordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>::at(const key_type& __k) { 17710b57cec5SDimitry Andric iterator __i = find(__k); 17720b57cec5SDimitry Andric if (__i == end()) 17730b57cec5SDimitry Andric __throw_out_of_range("unordered_map::at: key not found"); 17740b57cec5SDimitry Andric return __i->second; 17750b57cec5SDimitry Andric} 17760b57cec5SDimitry Andric 17770b57cec5SDimitry Andrictemplate <class _Key, class _Tp, class _Hash, class _Pred, class _Alloc> 1778cb14a3feSDimitry Andricconst _Tp& unordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>::at(const key_type& __k) const { 17790b57cec5SDimitry Andric const_iterator __i = find(__k); 17800b57cec5SDimitry Andric if (__i == end()) 17810b57cec5SDimitry Andric __throw_out_of_range("unordered_map::at: key not found"); 17820b57cec5SDimitry Andric return __i->second; 17830b57cec5SDimitry Andric} 17840b57cec5SDimitry Andric 17850b57cec5SDimitry Andrictemplate <class _Key, class _Tp, class _Hash, class _Pred, class _Alloc> 1786cb14a3feSDimitry Andricinline _LIBCPP_HIDE_FROM_ABI void 1787cb14a3feSDimitry Andricswap(unordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>& __x, unordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>& __y) 1788cb14a3feSDimitry Andric _NOEXCEPT_(_NOEXCEPT_(__x.swap(__y))) { 17890b57cec5SDimitry Andric __x.swap(__y); 17900b57cec5SDimitry Andric} 17910b57cec5SDimitry Andric 179206c3fb27SDimitry Andric#if _LIBCPP_STD_VER >= 20 1793cb14a3feSDimitry Andrictemplate <class _Key, class _Tp, class _Hash, class _Pred, class _Alloc, class _Predicate> 1794cb14a3feSDimitry Andricinline _LIBCPP_HIDE_FROM_ABI typename unordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>::size_type 1795cb14a3feSDimitry Andricerase_if(unordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>& __c, _Predicate __pred) { 17965f757f3fSDimitry Andric return std::__libcpp_erase_if_container(__c, __pred); 17975ffd83dbSDimitry Andric} 17980b57cec5SDimitry Andric#endif 17990b57cec5SDimitry Andric 18000b57cec5SDimitry Andrictemplate <class _Key, class _Tp, class _Hash, class _Pred, class _Alloc> 1801cb14a3feSDimitry Andric_LIBCPP_HIDE_FROM_ABI bool operator==(const unordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>& __x, 1802cb14a3feSDimitry Andric const unordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>& __y) { 18030b57cec5SDimitry Andric if (__x.size() != __y.size()) 18040b57cec5SDimitry Andric return false; 1805cb14a3feSDimitry Andric typedef typename unordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>::const_iterator const_iterator; 1806cb14a3feSDimitry Andric for (const_iterator __i = __x.begin(), __ex = __x.end(), __ey = __y.end(); __i != __ex; ++__i) { 18070b57cec5SDimitry Andric const_iterator __j = __y.find(__i->first); 18080b57cec5SDimitry Andric if (__j == __ey || !(*__i == *__j)) 18090b57cec5SDimitry Andric return false; 18100b57cec5SDimitry Andric } 18110b57cec5SDimitry Andric return true; 18120b57cec5SDimitry Andric} 18130b57cec5SDimitry Andric 181406c3fb27SDimitry Andric#if _LIBCPP_STD_VER <= 17 181506c3fb27SDimitry Andric 18160b57cec5SDimitry Andrictemplate <class _Key, class _Tp, class _Hash, class _Pred, class _Alloc> 1817cb14a3feSDimitry Andricinline _LIBCPP_HIDE_FROM_ABI bool operator!=(const unordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>& __x, 1818cb14a3feSDimitry Andric const unordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>& __y) { 18190b57cec5SDimitry Andric return !(__x == __y); 18200b57cec5SDimitry Andric} 18210b57cec5SDimitry Andric 182206c3fb27SDimitry Andric#endif 182306c3fb27SDimitry Andric 1824cb14a3feSDimitry Andrictemplate <class _Key, 1825cb14a3feSDimitry Andric class _Tp, 1826cb14a3feSDimitry Andric class _Hash = hash<_Key>, 1827cb14a3feSDimitry Andric class _Pred = equal_to<_Key>, 18280b57cec5SDimitry Andric class _Alloc = allocator<pair<const _Key, _Tp> > > 1829cb14a3feSDimitry Andricclass _LIBCPP_TEMPLATE_VIS unordered_multimap { 18300b57cec5SDimitry Andricpublic: 18310b57cec5SDimitry Andric // types 18320b57cec5SDimitry Andric typedef _Key key_type; 18330b57cec5SDimitry Andric typedef _Tp mapped_type; 183481ad6265SDimitry Andric typedef __type_identity_t<_Hash> hasher; 183581ad6265SDimitry Andric typedef __type_identity_t<_Pred> key_equal; 183681ad6265SDimitry Andric typedef __type_identity_t<_Alloc> allocator_type; 18370b57cec5SDimitry Andric typedef pair<const key_type, mapped_type> value_type; 18380b57cec5SDimitry Andric typedef value_type& reference; 18390b57cec5SDimitry Andric typedef const value_type& const_reference; 1840*0fca6ea1SDimitry Andric static_assert(__check_valid_allocator<allocator_type>::value, ""); 1841*0fca6ea1SDimitry Andric static_assert(is_same<value_type, typename allocator_type::value_type>::value, 184206c3fb27SDimitry Andric "Allocator::value_type must be same type as value_type"); 18430b57cec5SDimitry Andric 18440b57cec5SDimitry Andricprivate: 18450b57cec5SDimitry Andric typedef __hash_value_type<key_type, mapped_type> __value_type; 1846e8d8bef9SDimitry Andric typedef __unordered_map_hasher<key_type, __value_type, hasher, key_equal> __hasher; 1847e8d8bef9SDimitry Andric typedef __unordered_map_equal<key_type, __value_type, key_equal, hasher> __key_equal; 1848bdd1243dSDimitry Andric typedef __rebind_alloc<allocator_traits<allocator_type>, __value_type> __allocator_type; 18490b57cec5SDimitry Andric 1850cb14a3feSDimitry Andric typedef __hash_table<__value_type, __hasher, __key_equal, __allocator_type> __table; 18510b57cec5SDimitry Andric 18520b57cec5SDimitry Andric __table __table_; 18530b57cec5SDimitry Andric 18540b57cec5SDimitry Andric typedef typename __table::_NodeTypes _NodeTypes; 18550b57cec5SDimitry Andric typedef typename __table::__node_traits __node_traits; 18560b57cec5SDimitry Andric typedef typename __table::__node_allocator __node_allocator; 18570b57cec5SDimitry Andric typedef typename __table::__node __node; 18580b57cec5SDimitry Andric typedef __hash_map_node_destructor<__node_allocator> _Dp; 18590b57cec5SDimitry Andric typedef unique_ptr<__node, _Dp> __node_holder; 18600b57cec5SDimitry Andric typedef allocator_traits<allocator_type> __alloc_traits; 1861*0fca6ea1SDimitry Andric static_assert(is_same<typename __node_traits::size_type, typename __alloc_traits::size_type>::value, 18620b57cec5SDimitry Andric "Allocator uses different size_type for different types"); 1863bdd1243dSDimitry Andric 18640b57cec5SDimitry Andricpublic: 18650b57cec5SDimitry Andric typedef typename __alloc_traits::pointer pointer; 18660b57cec5SDimitry Andric typedef typename __alloc_traits::const_pointer const_pointer; 18670b57cec5SDimitry Andric typedef typename __table::size_type size_type; 18680b57cec5SDimitry Andric typedef typename __table::difference_type difference_type; 18690b57cec5SDimitry Andric 18700b57cec5SDimitry Andric typedef __hash_map_iterator<typename __table::iterator> iterator; 18710b57cec5SDimitry Andric typedef __hash_map_const_iterator<typename __table::const_iterator> const_iterator; 18720b57cec5SDimitry Andric typedef __hash_map_iterator<typename __table::local_iterator> local_iterator; 18730b57cec5SDimitry Andric typedef __hash_map_const_iterator<typename __table::const_local_iterator> const_local_iterator; 18740b57cec5SDimitry Andric 187506c3fb27SDimitry Andric#if _LIBCPP_STD_VER >= 17 18760b57cec5SDimitry Andric typedef __map_node_handle<__node, allocator_type> node_type; 18770b57cec5SDimitry Andric#endif 18780b57cec5SDimitry Andric 18790b57cec5SDimitry Andric template <class _Key2, class _Tp2, class _Hash2, class _Pred2, class _Alloc2> 18800b57cec5SDimitry Andric friend class _LIBCPP_TEMPLATE_VIS unordered_map; 18810b57cec5SDimitry Andric template <class _Key2, class _Tp2, class _Hash2, class _Pred2, class _Alloc2> 18820b57cec5SDimitry Andric friend class _LIBCPP_TEMPLATE_VIS unordered_multimap; 18830b57cec5SDimitry Andric 1884cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI unordered_multimap() _NOEXCEPT_(is_nothrow_default_constructible<__table>::value) {} 1885cb14a3feSDimitry Andric explicit _LIBCPP_HIDE_FROM_ABI 1886cb14a3feSDimitry Andric unordered_multimap(size_type __n, const hasher& __hf = hasher(), const key_equal& __eql = key_equal()); 18875f757f3fSDimitry Andric _LIBCPP_HIDE_FROM_ABI 1888cb14a3feSDimitry Andric unordered_multimap(size_type __n, const hasher& __hf, const key_equal& __eql, const allocator_type& __a); 18890b57cec5SDimitry Andric template <class _InputIterator> 189006c3fb27SDimitry Andric _LIBCPP_HIDE_FROM_ABI unordered_multimap(_InputIterator __first, _InputIterator __last); 18910b57cec5SDimitry Andric template <class _InputIterator> 1892cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI unordered_multimap( 1893cb14a3feSDimitry Andric _InputIterator __first, 1894cb14a3feSDimitry Andric _InputIterator __last, 1895cb14a3feSDimitry Andric size_type __n, 1896cb14a3feSDimitry Andric const hasher& __hf = hasher(), 18970b57cec5SDimitry Andric const key_equal& __eql = key_equal()); 18980b57cec5SDimitry Andric template <class _InputIterator> 1899cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI unordered_multimap( 1900cb14a3feSDimitry Andric _InputIterator __first, 1901cb14a3feSDimitry Andric _InputIterator __last, 1902cb14a3feSDimitry Andric size_type __n, 1903cb14a3feSDimitry Andric const hasher& __hf, 19040b57cec5SDimitry Andric const key_equal& __eql, 19050b57cec5SDimitry Andric const allocator_type& __a); 190606c3fb27SDimitry Andric 190706c3fb27SDimitry Andric#if _LIBCPP_STD_VER >= 23 190806c3fb27SDimitry Andric template <_ContainerCompatibleRange<value_type> _Range> 1909cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI unordered_multimap( 1910cb14a3feSDimitry Andric from_range_t, 1911cb14a3feSDimitry Andric _Range&& __range, 1912cb14a3feSDimitry Andric size_type __n = /*implementation-defined*/ 0, 1913cb14a3feSDimitry Andric const hasher& __hf = hasher(), 1914cb14a3feSDimitry Andric const key_equal& __eql = key_equal(), 191506c3fb27SDimitry Andric const allocator_type& __a = allocator_type()) 191606c3fb27SDimitry Andric : __table_(__hf, __eql, typename __table::allocator_type(__a)) { 191706c3fb27SDimitry Andric if (__n > 0) { 191806c3fb27SDimitry Andric __table_.__rehash_multi(__n); 191906c3fb27SDimitry Andric } 192006c3fb27SDimitry Andric insert_range(std::forward<_Range>(__range)); 192106c3fb27SDimitry Andric } 192206c3fb27SDimitry Andric#endif 192306c3fb27SDimitry Andric 1924cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI explicit unordered_multimap(const allocator_type& __a); 192506c3fb27SDimitry Andric _LIBCPP_HIDE_FROM_ABI unordered_multimap(const unordered_multimap& __u); 192606c3fb27SDimitry Andric _LIBCPP_HIDE_FROM_ABI unordered_multimap(const unordered_multimap& __u, const allocator_type& __a); 19270b57cec5SDimitry Andric#ifndef _LIBCPP_CXX03_LANG 1928cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI unordered_multimap(unordered_multimap&& __u) 19290b57cec5SDimitry Andric _NOEXCEPT_(is_nothrow_move_constructible<__table>::value); 193006c3fb27SDimitry Andric _LIBCPP_HIDE_FROM_ABI unordered_multimap(unordered_multimap&& __u, const allocator_type& __a); 193106c3fb27SDimitry Andric _LIBCPP_HIDE_FROM_ABI unordered_multimap(initializer_list<value_type> __il); 1932cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI unordered_multimap( 1933cb14a3feSDimitry Andric initializer_list<value_type> __il, 1934cb14a3feSDimitry Andric size_type __n, 19350b57cec5SDimitry Andric const hasher& __hf = hasher(), 19360b57cec5SDimitry Andric const key_equal& __eql = key_equal()); 1937cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI unordered_multimap( 1938cb14a3feSDimitry Andric initializer_list<value_type> __il, 1939cb14a3feSDimitry Andric size_type __n, 1940cb14a3feSDimitry Andric const hasher& __hf, 1941cb14a3feSDimitry Andric const key_equal& __eql, 19420b57cec5SDimitry Andric const allocator_type& __a); 19430b57cec5SDimitry Andric#endif // _LIBCPP_CXX03_LANG 194406c3fb27SDimitry Andric#if _LIBCPP_STD_VER >= 14 1945cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI unordered_multimap(size_type __n, const allocator_type& __a) 19460b57cec5SDimitry Andric : unordered_multimap(__n, hasher(), key_equal(), __a) {} 1947cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI unordered_multimap(size_type __n, const hasher& __hf, const allocator_type& __a) 19480b57cec5SDimitry Andric : unordered_multimap(__n, __hf, key_equal(), __a) {} 19490b57cec5SDimitry Andric template <class _InputIterator> 19505f757f3fSDimitry Andric _LIBCPP_HIDE_FROM_ABI 19510b57cec5SDimitry Andric unordered_multimap(_InputIterator __first, _InputIterator __last, size_type __n, const allocator_type& __a) 19520b57cec5SDimitry Andric : unordered_multimap(__first, __last, __n, hasher(), key_equal(), __a) {} 19530b57cec5SDimitry Andric template <class _InputIterator> 1954cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI unordered_multimap( 1955cb14a3feSDimitry Andric _InputIterator __first, _InputIterator __last, size_type __n, const hasher& __hf, const allocator_type& __a) 19560b57cec5SDimitry Andric : unordered_multimap(__first, __last, __n, __hf, key_equal(), __a) {} 195706c3fb27SDimitry Andric 195806c3fb27SDimitry Andric# if _LIBCPP_STD_VER >= 23 195906c3fb27SDimitry Andric template <_ContainerCompatibleRange<value_type> _Range> 1960cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI unordered_multimap(from_range_t, _Range&& __range, size_type __n, const allocator_type& __a) 196106c3fb27SDimitry Andric : unordered_multimap(from_range, std::forward<_Range>(__range), __n, hasher(), key_equal(), __a) {} 196206c3fb27SDimitry Andric 196306c3fb27SDimitry Andric template <_ContainerCompatibleRange<value_type> _Range> 196406c3fb27SDimitry Andric _LIBCPP_HIDE_FROM_ABI 196506c3fb27SDimitry Andric unordered_multimap(from_range_t, _Range&& __range, size_type __n, const hasher& __hf, const allocator_type& __a) 196606c3fb27SDimitry Andric : unordered_multimap(from_range, std::forward<_Range>(__range), __n, __hf, key_equal(), __a) {} 196706c3fb27SDimitry Andric# endif 196806c3fb27SDimitry Andric 1969cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI unordered_multimap(initializer_list<value_type> __il, size_type __n, const allocator_type& __a) 19700b57cec5SDimitry Andric : unordered_multimap(__il, __n, hasher(), key_equal(), __a) {} 19715f757f3fSDimitry Andric _LIBCPP_HIDE_FROM_ABI 1972cb14a3feSDimitry Andric unordered_multimap(initializer_list<value_type> __il, size_type __n, const hasher& __hf, const allocator_type& __a) 19730b57cec5SDimitry Andric : unordered_multimap(__il, __n, __hf, key_equal(), __a) {} 19740b57cec5SDimitry Andric#endif 1975cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI ~unordered_multimap() { 1976bdd1243dSDimitry Andric static_assert(sizeof(std::__diagnose_unordered_container_requirements<_Key, _Hash, _Pred>(0)), ""); 19770b57cec5SDimitry Andric } 19780b57cec5SDimitry Andric 1979cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI unordered_multimap& operator=(const unordered_multimap& __u) { 19800b57cec5SDimitry Andric#ifndef _LIBCPP_CXX03_LANG 19810b57cec5SDimitry Andric __table_ = __u.__table_; 19820b57cec5SDimitry Andric#else 19835f757f3fSDimitry Andric if (this != std::addressof(__u)) { 19840b57cec5SDimitry Andric __table_.clear(); 19850b57cec5SDimitry Andric __table_.hash_function() = __u.__table_.hash_function(); 19860b57cec5SDimitry Andric __table_.key_eq() = __u.__table_.key_eq(); 19870b57cec5SDimitry Andric __table_.max_load_factor() = __u.__table_.max_load_factor(); 19880b57cec5SDimitry Andric __table_.__copy_assign_alloc(__u.__table_); 19890b57cec5SDimitry Andric insert(__u.begin(), __u.end()); 19900b57cec5SDimitry Andric } 19910b57cec5SDimitry Andric#endif 19920b57cec5SDimitry Andric return *this; 19930b57cec5SDimitry Andric } 19940b57cec5SDimitry Andric#ifndef _LIBCPP_CXX03_LANG 1995cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI unordered_multimap& operator=(unordered_multimap&& __u) 19960b57cec5SDimitry Andric _NOEXCEPT_(is_nothrow_move_assignable<__table>::value); 1997cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI unordered_multimap& operator=(initializer_list<value_type> __il); 19980b57cec5SDimitry Andric#endif // _LIBCPP_CXX03_LANG 19990b57cec5SDimitry Andric 2000cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI allocator_type get_allocator() const _NOEXCEPT { 2001cb14a3feSDimitry Andric return allocator_type(__table_.__node_alloc()); 2002cb14a3feSDimitry Andric } 20030b57cec5SDimitry Andric 2004*0fca6ea1SDimitry Andric _LIBCPP_NODISCARD _LIBCPP_HIDE_FROM_ABI bool empty() const _NOEXCEPT { return __table_.size() == 0; } 2005cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI size_type size() const _NOEXCEPT { return __table_.size(); } 2006cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI size_type max_size() const _NOEXCEPT { return __table_.max_size(); } 20070b57cec5SDimitry Andric 2008cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI iterator begin() _NOEXCEPT { return __table_.begin(); } 2009cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI iterator end() _NOEXCEPT { return __table_.end(); } 2010cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI const_iterator begin() const _NOEXCEPT { return __table_.begin(); } 2011cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI const_iterator end() const _NOEXCEPT { return __table_.end(); } 2012cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI const_iterator cbegin() const _NOEXCEPT { return __table_.begin(); } 2013cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI const_iterator cend() const _NOEXCEPT { return __table_.end(); } 20140b57cec5SDimitry Andric 2015cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI iterator insert(const value_type& __x) { return __table_.__insert_multi(__x); } 20160b57cec5SDimitry Andric 2017cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI iterator insert(const_iterator __p, const value_type& __x) { 2018cb14a3feSDimitry Andric return __table_.__insert_multi(__p.__i_, __x); 2019cb14a3feSDimitry Andric } 20200b57cec5SDimitry Andric 20210b57cec5SDimitry Andric template <class _InputIterator> 2022cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI void insert(_InputIterator __first, _InputIterator __last); 20230b57cec5SDimitry Andric 202406c3fb27SDimitry Andric#if _LIBCPP_STD_VER >= 23 202506c3fb27SDimitry Andric template <_ContainerCompatibleRange<value_type> _Range> 2026cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI void insert_range(_Range&& __range) { 202706c3fb27SDimitry Andric for (auto&& __element : __range) { 202806c3fb27SDimitry Andric __table_.__insert_multi(std::forward<decltype(__element)>(__element)); 202906c3fb27SDimitry Andric } 203006c3fb27SDimitry Andric } 203106c3fb27SDimitry Andric#endif 203206c3fb27SDimitry Andric 20330b57cec5SDimitry Andric#ifndef _LIBCPP_CXX03_LANG 2034cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI void insert(initializer_list<value_type> __il) { insert(__il.begin(), __il.end()); } 2035cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI iterator insert(value_type&& __x) { return __table_.__insert_multi(std::move(__x)); } 20360b57cec5SDimitry Andric 2037cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI iterator insert(const_iterator __p, value_type&& __x) { 2038cb14a3feSDimitry Andric return __table_.__insert_multi(__p.__i_, std::move(__x)); 2039cb14a3feSDimitry Andric } 20400b57cec5SDimitry Andric 2041*0fca6ea1SDimitry Andric template <class _Pp, __enable_if_t<is_constructible<value_type, _Pp>::value, int> = 0> 2042cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI iterator insert(_Pp&& __x) { 2043cb14a3feSDimitry Andric return __table_.__insert_multi(std::forward<_Pp>(__x)); 2044cb14a3feSDimitry Andric } 20450b57cec5SDimitry Andric 2046*0fca6ea1SDimitry Andric template <class _Pp, __enable_if_t<is_constructible<value_type, _Pp>::value, int> = 0> 2047cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI iterator insert(const_iterator __p, _Pp&& __x) { 2048cb14a3feSDimitry Andric return __table_.__insert_multi(__p.__i_, std::forward<_Pp>(__x)); 2049cb14a3feSDimitry Andric } 20500b57cec5SDimitry Andric 20510b57cec5SDimitry Andric template <class... _Args> 205206c3fb27SDimitry Andric _LIBCPP_HIDE_FROM_ABI iterator emplace(_Args&&... __args) { 20535f757f3fSDimitry Andric return __table_.__emplace_multi(std::forward<_Args>(__args)...); 20540b57cec5SDimitry Andric } 20550b57cec5SDimitry Andric 20560b57cec5SDimitry Andric template <class... _Args> 205706c3fb27SDimitry Andric _LIBCPP_HIDE_FROM_ABI iterator emplace_hint(const_iterator __p, _Args&&... __args) { 20585f757f3fSDimitry Andric return __table_.__emplace_hint_multi(__p.__i_, std::forward<_Args>(__args)...); 20590b57cec5SDimitry Andric } 20600b57cec5SDimitry Andric#endif // _LIBCPP_CXX03_LANG 20610b57cec5SDimitry Andric 2062cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI iterator erase(const_iterator __p) { return __table_.erase(__p.__i_); } 2063cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI iterator erase(iterator __p) { return __table_.erase(__p.__i_); } 2064cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI size_type erase(const key_type& __k) { return __table_.__erase_multi(__k); } 2065cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI iterator erase(const_iterator __first, const_iterator __last) { 2066cb14a3feSDimitry Andric return __table_.erase(__first.__i_, __last.__i_); 2067cb14a3feSDimitry Andric } 2068cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI void clear() _NOEXCEPT { __table_.clear(); } 20690b57cec5SDimitry Andric 207006c3fb27SDimitry Andric#if _LIBCPP_STD_VER >= 17 2071cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI iterator insert(node_type&& __nh) { 207206c3fb27SDimitry Andric _LIBCPP_ASSERT_COMPATIBLE_ALLOCATOR(__nh.empty() || __nh.get_allocator() == get_allocator(), 20730b57cec5SDimitry Andric "node_type with incompatible allocator passed to unordered_multimap::insert()"); 2074cb14a3feSDimitry Andric return __table_.template __node_handle_insert_multi<node_type>(std::move(__nh)); 20750b57cec5SDimitry Andric } 2076cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI iterator insert(const_iterator __hint, node_type&& __nh) { 207706c3fb27SDimitry Andric _LIBCPP_ASSERT_COMPATIBLE_ALLOCATOR(__nh.empty() || __nh.get_allocator() == get_allocator(), 20780b57cec5SDimitry Andric "node_type with incompatible allocator passed to unordered_multimap::insert()"); 2079cb14a3feSDimitry Andric return __table_.template __node_handle_insert_multi<node_type>(__hint.__i_, std::move(__nh)); 20800b57cec5SDimitry Andric } 2081cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI node_type extract(key_type const& __key) { 20820b57cec5SDimitry Andric return __table_.template __node_handle_extract<node_type>(__key); 20830b57cec5SDimitry Andric } 2084cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI node_type extract(const_iterator __it) { 2085cb14a3feSDimitry Andric return __table_.template __node_handle_extract<node_type>(__it.__i_); 20860b57cec5SDimitry Andric } 20870b57cec5SDimitry Andric 20880b57cec5SDimitry Andric template <class _H2, class _P2> 2089cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI void merge(unordered_multimap<key_type, mapped_type, _H2, _P2, allocator_type>& __source) { 2090cb14a3feSDimitry Andric _LIBCPP_ASSERT_COMPATIBLE_ALLOCATOR( 2091cb14a3feSDimitry Andric __source.get_allocator() == get_allocator(), "merging container with incompatible allocator"); 20920b57cec5SDimitry Andric return __table_.__node_handle_merge_multi(__source.__table_); 20930b57cec5SDimitry Andric } 20940b57cec5SDimitry Andric template <class _H2, class _P2> 2095cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI void merge(unordered_multimap<key_type, mapped_type, _H2, _P2, allocator_type>&& __source) { 2096cb14a3feSDimitry Andric _LIBCPP_ASSERT_COMPATIBLE_ALLOCATOR( 2097cb14a3feSDimitry Andric __source.get_allocator() == get_allocator(), "merging container with incompatible allocator"); 20980b57cec5SDimitry Andric return __table_.__node_handle_merge_multi(__source.__table_); 20990b57cec5SDimitry Andric } 21000b57cec5SDimitry Andric template <class _H2, class _P2> 2101cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI void merge(unordered_map<key_type, mapped_type, _H2, _P2, allocator_type>& __source) { 2102cb14a3feSDimitry Andric _LIBCPP_ASSERT_COMPATIBLE_ALLOCATOR( 2103cb14a3feSDimitry Andric __source.get_allocator() == get_allocator(), "merging container with incompatible allocator"); 21040b57cec5SDimitry Andric return __table_.__node_handle_merge_multi(__source.__table_); 21050b57cec5SDimitry Andric } 21060b57cec5SDimitry Andric template <class _H2, class _P2> 2107cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI void merge(unordered_map<key_type, mapped_type, _H2, _P2, allocator_type>&& __source) { 2108cb14a3feSDimitry Andric _LIBCPP_ASSERT_COMPATIBLE_ALLOCATOR( 2109cb14a3feSDimitry Andric __source.get_allocator() == get_allocator(), "merging container with incompatible allocator"); 21100b57cec5SDimitry Andric return __table_.__node_handle_merge_multi(__source.__table_); 21110b57cec5SDimitry Andric } 21120b57cec5SDimitry Andric#endif 21130b57cec5SDimitry Andric 2114*0fca6ea1SDimitry Andric _LIBCPP_HIDE_FROM_ABI void swap(unordered_multimap& __u) _NOEXCEPT_(__is_nothrow_swappable_v<__table>) { 2115cb14a3feSDimitry Andric __table_.swap(__u.__table_); 2116cb14a3feSDimitry Andric } 21170b57cec5SDimitry Andric 2118cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI hasher hash_function() const { return __table_.hash_function().hash_function(); } 2119cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI key_equal key_eq() const { return __table_.key_eq().key_eq(); } 21200b57cec5SDimitry Andric 2121cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI iterator find(const key_type& __k) { return __table_.find(__k); } 2122cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI const_iterator find(const key_type& __k) const { return __table_.find(__k); } 212306c3fb27SDimitry Andric#if _LIBCPP_STD_VER >= 20 2124*0fca6ea1SDimitry Andric template <class _K2, enable_if_t<__is_transparent_v<hasher, _K2> && __is_transparent_v<key_equal, _K2>>* = nullptr> 2125cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI iterator find(const _K2& __k) { 2126cb14a3feSDimitry Andric return __table_.find(__k); 2127cb14a3feSDimitry Andric } 2128*0fca6ea1SDimitry Andric template <class _K2, enable_if_t<__is_transparent_v<hasher, _K2> && __is_transparent_v<key_equal, _K2>>* = nullptr> 2129cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI const_iterator find(const _K2& __k) const { 2130cb14a3feSDimitry Andric return __table_.find(__k); 2131cb14a3feSDimitry Andric } 213206c3fb27SDimitry Andric#endif // _LIBCPP_STD_VER >= 20 2133349cc55cSDimitry Andric 2134cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI size_type count(const key_type& __k) const { return __table_.__count_multi(__k); } 213506c3fb27SDimitry Andric#if _LIBCPP_STD_VER >= 20 2136*0fca6ea1SDimitry Andric template <class _K2, enable_if_t<__is_transparent_v<hasher, _K2> && __is_transparent_v<key_equal, _K2>>* = nullptr> 2137cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI size_type count(const _K2& __k) const { 2138cb14a3feSDimitry Andric return __table_.__count_multi(__k); 2139cb14a3feSDimitry Andric } 214006c3fb27SDimitry Andric#endif // _LIBCPP_STD_VER >= 20 2141349cc55cSDimitry Andric 214206c3fb27SDimitry Andric#if _LIBCPP_STD_VER >= 20 2143cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI bool contains(const key_type& __k) const { return find(__k) != end(); } 2144e8d8bef9SDimitry Andric 2145*0fca6ea1SDimitry Andric template <class _K2, enable_if_t<__is_transparent_v<hasher, _K2> && __is_transparent_v<key_equal, _K2>>* = nullptr> 2146cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI bool contains(const _K2& __k) const { 2147cb14a3feSDimitry Andric return find(__k) != end(); 2148cb14a3feSDimitry Andric } 214906c3fb27SDimitry Andric#endif // _LIBCPP_STD_VER >= 20 2150349cc55cSDimitry Andric 2151cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI pair<iterator, iterator> equal_range(const key_type& __k) { 2152cb14a3feSDimitry Andric return __table_.__equal_range_multi(__k); 2153cb14a3feSDimitry Andric } 2154cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI pair<const_iterator, const_iterator> equal_range(const key_type& __k) const { 2155cb14a3feSDimitry Andric return __table_.__equal_range_multi(__k); 2156cb14a3feSDimitry Andric } 215706c3fb27SDimitry Andric#if _LIBCPP_STD_VER >= 20 2158*0fca6ea1SDimitry Andric template <class _K2, enable_if_t<__is_transparent_v<hasher, _K2> && __is_transparent_v<key_equal, _K2>>* = nullptr> 2159cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI pair<iterator, iterator> equal_range(const _K2& __k) { 2160cb14a3feSDimitry Andric return __table_.__equal_range_multi(__k); 2161cb14a3feSDimitry Andric } 2162*0fca6ea1SDimitry Andric template <class _K2, enable_if_t<__is_transparent_v<hasher, _K2> && __is_transparent_v<key_equal, _K2>>* = nullptr> 2163cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI pair<const_iterator, const_iterator> equal_range(const _K2& __k) const { 2164cb14a3feSDimitry Andric return __table_.__equal_range_multi(__k); 2165cb14a3feSDimitry Andric } 216606c3fb27SDimitry Andric#endif // _LIBCPP_STD_VER >= 20 21670b57cec5SDimitry Andric 2168cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI size_type bucket_count() const _NOEXCEPT { return __table_.bucket_count(); } 2169cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI size_type max_bucket_count() const _NOEXCEPT { return __table_.max_bucket_count(); } 21700b57cec5SDimitry Andric 2171cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI size_type bucket_size(size_type __n) const { return __table_.bucket_size(__n); } 2172cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI size_type bucket(const key_type& __k) const { return __table_.bucket(__k); } 21730b57cec5SDimitry Andric 2174cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI local_iterator begin(size_type __n) { return __table_.begin(__n); } 2175cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI local_iterator end(size_type __n) { return __table_.end(__n); } 2176cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI const_local_iterator begin(size_type __n) const { return __table_.cbegin(__n); } 2177cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI const_local_iterator end(size_type __n) const { return __table_.cend(__n); } 2178cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI const_local_iterator cbegin(size_type __n) const { return __table_.cbegin(__n); } 2179cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI const_local_iterator cend(size_type __n) const { return __table_.cend(__n); } 21800b57cec5SDimitry Andric 2181cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI float load_factor() const _NOEXCEPT { return __table_.load_factor(); } 2182cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI float max_load_factor() const _NOEXCEPT { return __table_.max_load_factor(); } 2183cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI void max_load_factor(float __mlf) { __table_.max_load_factor(__mlf); } 2184cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI void rehash(size_type __n) { __table_.__rehash_multi(__n); } 2185cb14a3feSDimitry Andric _LIBCPP_HIDE_FROM_ABI void reserve(size_type __n) { __table_.__reserve_multi(__n); } 21860b57cec5SDimitry Andric}; 21870b57cec5SDimitry Andric 2188349cc55cSDimitry Andric#if _LIBCPP_STD_VER >= 17 21890b57cec5SDimitry Andrictemplate <class _InputIterator, 21900b57cec5SDimitry Andric class _Hash = hash<__iter_key_type<_InputIterator>>, 21910b57cec5SDimitry Andric class _Pred = equal_to<__iter_key_type<_InputIterator>>, 21920b57cec5SDimitry Andric class _Allocator = allocator<__iter_to_alloc_type<_InputIterator>>, 219306c3fb27SDimitry Andric class = enable_if_t<__has_input_iterator_category<_InputIterator>::value>, 2194349cc55cSDimitry Andric class = enable_if_t<!__is_allocator<_Hash>::value>, 2195349cc55cSDimitry Andric class = enable_if_t<!is_integral<_Hash>::value>, 2196349cc55cSDimitry Andric class = enable_if_t<!__is_allocator<_Pred>::value>, 2197349cc55cSDimitry Andric class = enable_if_t<__is_allocator<_Allocator>::value>> 2198cb14a3feSDimitry Andricunordered_multimap(_InputIterator, 2199cb14a3feSDimitry Andric _InputIterator, 2200cb14a3feSDimitry Andric typename allocator_traits<_Allocator>::size_type = 0, 2201cb14a3feSDimitry Andric _Hash = _Hash(), 2202cb14a3feSDimitry Andric _Pred = _Pred(), 2203cb14a3feSDimitry Andric _Allocator = _Allocator()) 2204cb14a3feSDimitry Andric -> unordered_multimap<__iter_key_type<_InputIterator>, 2205cb14a3feSDimitry Andric __iter_mapped_type<_InputIterator>, 2206cb14a3feSDimitry Andric _Hash, 2207cb14a3feSDimitry Andric _Pred, 2208cb14a3feSDimitry Andric _Allocator>; 22090b57cec5SDimitry Andric 221006c3fb27SDimitry Andric# if _LIBCPP_STD_VER >= 23 221106c3fb27SDimitry Andrictemplate <ranges::input_range _Range, 221206c3fb27SDimitry Andric class _Hash = hash<__range_key_type<_Range>>, 221306c3fb27SDimitry Andric class _Pred = equal_to<__range_key_type<_Range>>, 221406c3fb27SDimitry Andric class _Allocator = allocator<__range_to_alloc_type<_Range>>, 221506c3fb27SDimitry Andric class = enable_if_t<!__is_allocator<_Hash>::value>, 221606c3fb27SDimitry Andric class = enable_if_t<!is_integral<_Hash>::value>, 221706c3fb27SDimitry Andric class = enable_if_t<!__is_allocator<_Pred>::value>, 221806c3fb27SDimitry Andric class = enable_if_t<__is_allocator<_Allocator>::value>> 2219cb14a3feSDimitry Andricunordered_multimap(from_range_t, 2220cb14a3feSDimitry Andric _Range&&, 2221cb14a3feSDimitry Andric typename allocator_traits<_Allocator>::size_type = 0, 2222cb14a3feSDimitry Andric _Hash = _Hash(), 2223cb14a3feSDimitry Andric _Pred = _Pred(), 2224cb14a3feSDimitry Andric _Allocator = _Allocator()) 222506c3fb27SDimitry Andric -> unordered_multimap<__range_key_type<_Range>, __range_mapped_type<_Range>, _Hash, _Pred, _Allocator>; 222606c3fb27SDimitry Andric# endif 222706c3fb27SDimitry Andric 2228cb14a3feSDimitry Andrictemplate <class _Key, 2229cb14a3feSDimitry Andric class _Tp, 2230cb14a3feSDimitry Andric class _Hash = hash<remove_const_t<_Key>>, 22310b57cec5SDimitry Andric class _Pred = equal_to<remove_const_t<_Key>>, 22320b57cec5SDimitry Andric class _Allocator = allocator<pair<const _Key, _Tp>>, 2233349cc55cSDimitry Andric class = enable_if_t<!__is_allocator<_Hash>::value>, 2234349cc55cSDimitry Andric class = enable_if_t<!is_integral<_Hash>::value>, 2235349cc55cSDimitry Andric class = enable_if_t<!__is_allocator<_Pred>::value>, 2236349cc55cSDimitry Andric class = enable_if_t<__is_allocator<_Allocator>::value>> 2237*0fca6ea1SDimitry Andricunordered_multimap( 2238*0fca6ea1SDimitry Andric initializer_list<pair<_Key, _Tp>>, 2239cb14a3feSDimitry Andric typename allocator_traits<_Allocator>::size_type = 0, 2240cb14a3feSDimitry Andric _Hash = _Hash(), 2241cb14a3feSDimitry Andric _Pred = _Pred(), 2242*0fca6ea1SDimitry Andric _Allocator = _Allocator()) -> unordered_multimap<remove_const_t<_Key>, _Tp, _Hash, _Pred, _Allocator>; 22430b57cec5SDimitry Andric 2244cb14a3feSDimitry Andrictemplate <class _InputIterator, 2245cb14a3feSDimitry Andric class _Allocator, 224606c3fb27SDimitry Andric class = enable_if_t<__has_input_iterator_category<_InputIterator>::value>, 2247349cc55cSDimitry Andric class = enable_if_t<__is_allocator<_Allocator>::value>> 22480b57cec5SDimitry Andricunordered_multimap(_InputIterator, _InputIterator, typename allocator_traits<_Allocator>::size_type, _Allocator) 2249cb14a3feSDimitry Andric -> unordered_multimap<__iter_key_type<_InputIterator>, 2250cb14a3feSDimitry Andric __iter_mapped_type<_InputIterator>, 2251cb14a3feSDimitry Andric hash<__iter_key_type<_InputIterator>>, 2252cb14a3feSDimitry Andric equal_to<__iter_key_type<_InputIterator>>, 2253cb14a3feSDimitry Andric _Allocator>; 22540b57cec5SDimitry Andric 2255cb14a3feSDimitry Andrictemplate <class _InputIterator, 2256cb14a3feSDimitry Andric class _Allocator, 225706c3fb27SDimitry Andric class = enable_if_t<__has_input_iterator_category<_InputIterator>::value>, 2258349cc55cSDimitry Andric class = enable_if_t<__is_allocator<_Allocator>::value>> 22590b57cec5SDimitry Andricunordered_multimap(_InputIterator, _InputIterator, _Allocator) 2260cb14a3feSDimitry Andric -> unordered_multimap<__iter_key_type<_InputIterator>, 2261cb14a3feSDimitry Andric __iter_mapped_type<_InputIterator>, 2262cb14a3feSDimitry Andric hash<__iter_key_type<_InputIterator>>, 2263cb14a3feSDimitry Andric equal_to<__iter_key_type<_InputIterator>>, 2264cb14a3feSDimitry Andric _Allocator>; 22650b57cec5SDimitry Andric 2266cb14a3feSDimitry Andrictemplate <class _InputIterator, 2267cb14a3feSDimitry Andric class _Hash, 2268cb14a3feSDimitry Andric class _Allocator, 226906c3fb27SDimitry Andric class = enable_if_t<__has_input_iterator_category<_InputIterator>::value>, 2270349cc55cSDimitry Andric class = enable_if_t<!__is_allocator<_Hash>::value>, 2271349cc55cSDimitry Andric class = enable_if_t<!is_integral<_Hash>::value>, 2272349cc55cSDimitry Andric class = enable_if_t<__is_allocator<_Allocator>::value>> 22730b57cec5SDimitry Andricunordered_multimap(_InputIterator, _InputIterator, typename allocator_traits<_Allocator>::size_type, _Hash, _Allocator) 2274cb14a3feSDimitry Andric -> unordered_multimap<__iter_key_type<_InputIterator>, 2275cb14a3feSDimitry Andric __iter_mapped_type<_InputIterator>, 2276cb14a3feSDimitry Andric _Hash, 2277cb14a3feSDimitry Andric equal_to<__iter_key_type<_InputIterator>>, 2278cb14a3feSDimitry Andric _Allocator>; 22790b57cec5SDimitry Andric 228006c3fb27SDimitry Andric# if _LIBCPP_STD_VER >= 23 228106c3fb27SDimitry Andric 2282cb14a3feSDimitry Andrictemplate <ranges::input_range _Range, class _Allocator, class = enable_if_t<__is_allocator<_Allocator>::value>> 228306c3fb27SDimitry Andricunordered_multimap(from_range_t, _Range&&, typename allocator_traits<_Allocator>::size_type, _Allocator) 2284cb14a3feSDimitry Andric -> unordered_multimap<__range_key_type<_Range>, 2285cb14a3feSDimitry Andric __range_mapped_type<_Range>, 2286cb14a3feSDimitry Andric hash<__range_key_type<_Range>>, 2287cb14a3feSDimitry Andric equal_to<__range_key_type<_Range>>, 2288cb14a3feSDimitry Andric _Allocator>; 228906c3fb27SDimitry Andric 2290cb14a3feSDimitry Andrictemplate <ranges::input_range _Range, class _Allocator, class = enable_if_t<__is_allocator<_Allocator>::value>> 229106c3fb27SDimitry Andricunordered_multimap(from_range_t, _Range&&, _Allocator) 2292cb14a3feSDimitry Andric -> unordered_multimap<__range_key_type<_Range>, 2293cb14a3feSDimitry Andric __range_mapped_type<_Range>, 2294cb14a3feSDimitry Andric hash<__range_key_type<_Range>>, 2295cb14a3feSDimitry Andric equal_to<__range_key_type<_Range>>, 2296cb14a3feSDimitry Andric _Allocator>; 229706c3fb27SDimitry Andric 2298cb14a3feSDimitry Andrictemplate <ranges::input_range _Range, 2299cb14a3feSDimitry Andric class _Hash, 2300cb14a3feSDimitry Andric class _Allocator, 230106c3fb27SDimitry Andric class = enable_if_t<!__is_allocator<_Hash>::value>, 230206c3fb27SDimitry Andric class = enable_if_t<!is_integral<_Hash>::value>, 230306c3fb27SDimitry Andric class = enable_if_t<__is_allocator<_Allocator>::value>> 230406c3fb27SDimitry Andricunordered_multimap(from_range_t, _Range&&, typename allocator_traits<_Allocator>::size_type, _Hash, _Allocator) 2305cb14a3feSDimitry Andric -> unordered_multimap<__range_key_type<_Range>, 2306cb14a3feSDimitry Andric __range_mapped_type<_Range>, 2307cb14a3feSDimitry Andric _Hash, 2308cb14a3feSDimitry Andric equal_to<__range_key_type<_Range>>, 2309cb14a3feSDimitry Andric _Allocator>; 231006c3fb27SDimitry Andric 231106c3fb27SDimitry Andric# endif 231206c3fb27SDimitry Andric 2313cb14a3feSDimitry Andrictemplate <class _Key, class _Tp, class _Allocator, class = enable_if_t<__is_allocator<_Allocator>::value>> 23140b57cec5SDimitry Andricunordered_multimap(initializer_list<pair<_Key, _Tp>>, typename allocator_traits<_Allocator>::size_type, _Allocator) 2315cb14a3feSDimitry Andric -> unordered_multimap<remove_const_t<_Key>, 2316cb14a3feSDimitry Andric _Tp, 23170b57cec5SDimitry Andric hash<remove_const_t<_Key>>, 2318cb14a3feSDimitry Andric equal_to<remove_const_t<_Key>>, 2319cb14a3feSDimitry Andric _Allocator>; 23200b57cec5SDimitry Andric 2321cb14a3feSDimitry Andrictemplate <class _Key, class _Tp, class _Allocator, class = enable_if_t<__is_allocator<_Allocator>::value>> 23220b57cec5SDimitry Andricunordered_multimap(initializer_list<pair<_Key, _Tp>>, _Allocator) 2323cb14a3feSDimitry Andric -> unordered_multimap<remove_const_t<_Key>, 2324cb14a3feSDimitry Andric _Tp, 23250b57cec5SDimitry Andric hash<remove_const_t<_Key>>, 2326cb14a3feSDimitry Andric equal_to<remove_const_t<_Key>>, 2327cb14a3feSDimitry Andric _Allocator>; 23280b57cec5SDimitry Andric 2329cb14a3feSDimitry Andrictemplate <class _Key, 2330cb14a3feSDimitry Andric class _Tp, 2331cb14a3feSDimitry Andric class _Hash, 2332cb14a3feSDimitry Andric class _Allocator, 2333349cc55cSDimitry Andric class = enable_if_t<!__is_allocator<_Hash>::value>, 2334349cc55cSDimitry Andric class = enable_if_t<!is_integral<_Hash>::value>, 2335349cc55cSDimitry Andric class = enable_if_t<__is_allocator<_Allocator>::value>> 2336cb14a3feSDimitry Andricunordered_multimap( 2337cb14a3feSDimitry Andric initializer_list<pair<_Key, _Tp>>, typename allocator_traits<_Allocator>::size_type, _Hash, _Allocator) 2338cb14a3feSDimitry Andric -> unordered_multimap<remove_const_t<_Key>, _Tp, _Hash, equal_to<remove_const_t<_Key>>, _Allocator>; 23390b57cec5SDimitry Andric#endif 23400b57cec5SDimitry Andric 23410b57cec5SDimitry Andrictemplate <class _Key, class _Tp, class _Hash, class _Pred, class _Alloc> 23420b57cec5SDimitry Andricunordered_multimap<_Key, _Tp, _Hash, _Pred, _Alloc>::unordered_multimap( 23430b57cec5SDimitry Andric size_type __n, const hasher& __hf, const key_equal& __eql) 2344cb14a3feSDimitry Andric : __table_(__hf, __eql) { 2345753f127fSDimitry Andric __table_.__rehash_multi(__n); 23460b57cec5SDimitry Andric} 23470b57cec5SDimitry Andric 23480b57cec5SDimitry Andrictemplate <class _Key, class _Tp, class _Hash, class _Pred, class _Alloc> 23490b57cec5SDimitry Andricunordered_multimap<_Key, _Tp, _Hash, _Pred, _Alloc>::unordered_multimap( 2350cb14a3feSDimitry Andric size_type __n, const hasher& __hf, const key_equal& __eql, const allocator_type& __a) 2351cb14a3feSDimitry Andric : __table_(__hf, __eql, typename __table::allocator_type(__a)) { 2352cb14a3feSDimitry Andric __table_.__rehash_multi(__n); 2353cb14a3feSDimitry Andric} 2354cb14a3feSDimitry Andric 2355cb14a3feSDimitry Andrictemplate <class _Key, class _Tp, class _Hash, class _Pred, class _Alloc> 2356cb14a3feSDimitry Andrictemplate <class _InputIterator> 2357cb14a3feSDimitry Andricunordered_multimap<_Key, _Tp, _Hash, _Pred, _Alloc>::unordered_multimap(_InputIterator __first, _InputIterator __last) { 2358cb14a3feSDimitry Andric insert(__first, __last); 2359cb14a3feSDimitry Andric} 2360cb14a3feSDimitry Andric 2361cb14a3feSDimitry Andrictemplate <class _Key, class _Tp, class _Hash, class _Pred, class _Alloc> 2362cb14a3feSDimitry Andrictemplate <class _InputIterator> 2363cb14a3feSDimitry Andricunordered_multimap<_Key, _Tp, _Hash, _Pred, _Alloc>::unordered_multimap( 2364cb14a3feSDimitry Andric _InputIterator __first, _InputIterator __last, size_type __n, const hasher& __hf, const key_equal& __eql) 2365cb14a3feSDimitry Andric : __table_(__hf, __eql) { 2366cb14a3feSDimitry Andric __table_.__rehash_multi(__n); 2367cb14a3feSDimitry Andric insert(__first, __last); 2368cb14a3feSDimitry Andric} 2369cb14a3feSDimitry Andric 2370cb14a3feSDimitry Andrictemplate <class _Key, class _Tp, class _Hash, class _Pred, class _Alloc> 2371cb14a3feSDimitry Andrictemplate <class _InputIterator> 2372cb14a3feSDimitry Andricunordered_multimap<_Key, _Tp, _Hash, _Pred, _Alloc>::unordered_multimap( 2373cb14a3feSDimitry Andric _InputIterator __first, 2374cb14a3feSDimitry Andric _InputIterator __last, 2375cb14a3feSDimitry Andric size_type __n, 2376cb14a3feSDimitry Andric const hasher& __hf, 2377cb14a3feSDimitry Andric const key_equal& __eql, 23780b57cec5SDimitry Andric const allocator_type& __a) 2379cb14a3feSDimitry Andric : __table_(__hf, __eql, typename __table::allocator_type(__a)) { 2380753f127fSDimitry Andric __table_.__rehash_multi(__n); 23810b57cec5SDimitry Andric insert(__first, __last); 23820b57cec5SDimitry Andric} 23830b57cec5SDimitry Andric 23840b57cec5SDimitry Andrictemplate <class _Key, class _Tp, class _Hash, class _Pred, class _Alloc> 2385cb14a3feSDimitry Andricinline unordered_multimap<_Key, _Tp, _Hash, _Pred, _Alloc>::unordered_multimap(const allocator_type& __a) 2386cb14a3feSDimitry Andric : __table_(typename __table::allocator_type(__a)) {} 23870b57cec5SDimitry Andric 23880b57cec5SDimitry Andrictemplate <class _Key, class _Tp, class _Hash, class _Pred, class _Alloc> 2389cb14a3feSDimitry Andricunordered_multimap<_Key, _Tp, _Hash, _Pred, _Alloc>::unordered_multimap(const unordered_multimap& __u) 2390cb14a3feSDimitry Andric : __table_(__u.__table_) { 2391753f127fSDimitry Andric __table_.__rehash_multi(__u.bucket_count()); 23920b57cec5SDimitry Andric insert(__u.begin(), __u.end()); 23930b57cec5SDimitry Andric} 23940b57cec5SDimitry Andric 23950b57cec5SDimitry Andrictemplate <class _Key, class _Tp, class _Hash, class _Pred, class _Alloc> 23960b57cec5SDimitry Andricunordered_multimap<_Key, _Tp, _Hash, _Pred, _Alloc>::unordered_multimap( 23970b57cec5SDimitry Andric const unordered_multimap& __u, const allocator_type& __a) 2398cb14a3feSDimitry Andric : __table_(__u.__table_, typename __table::allocator_type(__a)) { 2399753f127fSDimitry Andric __table_.__rehash_multi(__u.bucket_count()); 24000b57cec5SDimitry Andric insert(__u.begin(), __u.end()); 24010b57cec5SDimitry Andric} 24020b57cec5SDimitry Andric 24030b57cec5SDimitry Andric#ifndef _LIBCPP_CXX03_LANG 24040b57cec5SDimitry Andric 24050b57cec5SDimitry Andrictemplate <class _Key, class _Tp, class _Hash, class _Pred, class _Alloc> 2406cb14a3feSDimitry Andricinline unordered_multimap<_Key, _Tp, _Hash, _Pred, _Alloc>::unordered_multimap(unordered_multimap&& __u) 24070b57cec5SDimitry Andric _NOEXCEPT_(is_nothrow_move_constructible<__table>::value) 2408cb14a3feSDimitry Andric : __table_(std::move(__u.__table_)) {} 24090b57cec5SDimitry Andric 24100b57cec5SDimitry Andrictemplate <class _Key, class _Tp, class _Hash, class _Pred, class _Alloc> 24110b57cec5SDimitry Andricunordered_multimap<_Key, _Tp, _Hash, _Pred, _Alloc>::unordered_multimap( 24120b57cec5SDimitry Andric unordered_multimap&& __u, const allocator_type& __a) 2413cb14a3feSDimitry Andric : __table_(std::move(__u.__table_), typename __table::allocator_type(__a)) { 2414cb14a3feSDimitry Andric if (__a != __u.get_allocator()) { 24150b57cec5SDimitry Andric iterator __i = __u.begin(); 2416cb14a3feSDimitry Andric while (__u.size() != 0) { 2417cb14a3feSDimitry Andric __table_.__insert_multi(__u.__table_.remove((__i++).__i_)->__get_value().__move()); 24180b57cec5SDimitry Andric } 24190b57cec5SDimitry Andric } 24200b57cec5SDimitry Andric} 24210b57cec5SDimitry Andric 24220b57cec5SDimitry Andrictemplate <class _Key, class _Tp, class _Hash, class _Pred, class _Alloc> 2423cb14a3feSDimitry Andricunordered_multimap<_Key, _Tp, _Hash, _Pred, _Alloc>::unordered_multimap(initializer_list<value_type> __il) { 24240b57cec5SDimitry Andric insert(__il.begin(), __il.end()); 24250b57cec5SDimitry Andric} 24260b57cec5SDimitry Andric 24270b57cec5SDimitry Andrictemplate <class _Key, class _Tp, class _Hash, class _Pred, class _Alloc> 24280b57cec5SDimitry Andricunordered_multimap<_Key, _Tp, _Hash, _Pred, _Alloc>::unordered_multimap( 2429cb14a3feSDimitry Andric initializer_list<value_type> __il, size_type __n, const hasher& __hf, const key_equal& __eql) 2430cb14a3feSDimitry Andric : __table_(__hf, __eql) { 2431753f127fSDimitry Andric __table_.__rehash_multi(__n); 24320b57cec5SDimitry Andric insert(__il.begin(), __il.end()); 24330b57cec5SDimitry Andric} 24340b57cec5SDimitry Andric 24350b57cec5SDimitry Andrictemplate <class _Key, class _Tp, class _Hash, class _Pred, class _Alloc> 24360b57cec5SDimitry Andricunordered_multimap<_Key, _Tp, _Hash, _Pred, _Alloc>::unordered_multimap( 2437cb14a3feSDimitry Andric initializer_list<value_type> __il, 2438cb14a3feSDimitry Andric size_type __n, 2439cb14a3feSDimitry Andric const hasher& __hf, 2440cb14a3feSDimitry Andric const key_equal& __eql, 2441cb14a3feSDimitry Andric const allocator_type& __a) 2442cb14a3feSDimitry Andric : __table_(__hf, __eql, typename __table::allocator_type(__a)) { 2443753f127fSDimitry Andric __table_.__rehash_multi(__n); 24440b57cec5SDimitry Andric insert(__il.begin(), __il.end()); 24450b57cec5SDimitry Andric} 24460b57cec5SDimitry Andric 24470b57cec5SDimitry Andrictemplate <class _Key, class _Tp, class _Hash, class _Pred, class _Alloc> 2448cb14a3feSDimitry Andricinline unordered_multimap<_Key, _Tp, _Hash, _Pred, _Alloc>& 24490b57cec5SDimitry Andricunordered_multimap<_Key, _Tp, _Hash, _Pred, _Alloc>::operator=(unordered_multimap&& __u) 2450cb14a3feSDimitry Andric _NOEXCEPT_(is_nothrow_move_assignable<__table>::value) { 24515f757f3fSDimitry Andric __table_ = std::move(__u.__table_); 24520b57cec5SDimitry Andric return *this; 24530b57cec5SDimitry Andric} 24540b57cec5SDimitry Andric 24550b57cec5SDimitry Andrictemplate <class _Key, class _Tp, class _Hash, class _Pred, class _Alloc> 2456cb14a3feSDimitry Andricinline unordered_multimap<_Key, _Tp, _Hash, _Pred, _Alloc>& 2457cb14a3feSDimitry Andricunordered_multimap<_Key, _Tp, _Hash, _Pred, _Alloc>::operator=(initializer_list<value_type> __il) { 24580b57cec5SDimitry Andric __table_.__assign_multi(__il.begin(), __il.end()); 24590b57cec5SDimitry Andric return *this; 24600b57cec5SDimitry Andric} 24610b57cec5SDimitry Andric 24620b57cec5SDimitry Andric#endif // _LIBCPP_CXX03_LANG 24630b57cec5SDimitry Andric 24640b57cec5SDimitry Andrictemplate <class _Key, class _Tp, class _Hash, class _Pred, class _Alloc> 24650b57cec5SDimitry Andrictemplate <class _InputIterator> 2466cb14a3feSDimitry Andricinline void unordered_multimap<_Key, _Tp, _Hash, _Pred, _Alloc>::insert(_InputIterator __first, _InputIterator __last) { 24670b57cec5SDimitry Andric for (; __first != __last; ++__first) 24680b57cec5SDimitry Andric __table_.__insert_multi(*__first); 24690b57cec5SDimitry Andric} 24700b57cec5SDimitry Andric 24710b57cec5SDimitry Andrictemplate <class _Key, class _Tp, class _Hash, class _Pred, class _Alloc> 2472cb14a3feSDimitry Andricinline _LIBCPP_HIDE_FROM_ABI void 2473cb14a3feSDimitry Andricswap(unordered_multimap<_Key, _Tp, _Hash, _Pred, _Alloc>& __x, unordered_multimap<_Key, _Tp, _Hash, _Pred, _Alloc>& __y) 2474cb14a3feSDimitry Andric _NOEXCEPT_(_NOEXCEPT_(__x.swap(__y))) { 24750b57cec5SDimitry Andric __x.swap(__y); 24760b57cec5SDimitry Andric} 24770b57cec5SDimitry Andric 247806c3fb27SDimitry Andric#if _LIBCPP_STD_VER >= 20 2479cb14a3feSDimitry Andrictemplate <class _Key, class _Tp, class _Hash, class _Pred, class _Alloc, class _Predicate> 2480cb14a3feSDimitry Andricinline _LIBCPP_HIDE_FROM_ABI typename unordered_multimap<_Key, _Tp, _Hash, _Pred, _Alloc>::size_type 2481cb14a3feSDimitry Andricerase_if(unordered_multimap<_Key, _Tp, _Hash, _Pred, _Alloc>& __c, _Predicate __pred) { 24825f757f3fSDimitry Andric return std::__libcpp_erase_if_container(__c, __pred); 24835ffd83dbSDimitry Andric} 24840b57cec5SDimitry Andric#endif 24850b57cec5SDimitry Andric 24860b57cec5SDimitry Andrictemplate <class _Key, class _Tp, class _Hash, class _Pred, class _Alloc> 2487cb14a3feSDimitry Andric_LIBCPP_HIDE_FROM_ABI bool operator==(const unordered_multimap<_Key, _Tp, _Hash, _Pred, _Alloc>& __x, 2488cb14a3feSDimitry Andric const unordered_multimap<_Key, _Tp, _Hash, _Pred, _Alloc>& __y) { 24890b57cec5SDimitry Andric if (__x.size() != __y.size()) 24900b57cec5SDimitry Andric return false; 2491cb14a3feSDimitry Andric typedef typename unordered_multimap<_Key, _Tp, _Hash, _Pred, _Alloc>::const_iterator const_iterator; 24920b57cec5SDimitry Andric typedef pair<const_iterator, const_iterator> _EqRng; 2493cb14a3feSDimitry Andric for (const_iterator __i = __x.begin(), __ex = __x.end(); __i != __ex;) { 24940b57cec5SDimitry Andric _EqRng __xeq = __x.equal_range(__i->first); 24950b57cec5SDimitry Andric _EqRng __yeq = __y.equal_range(__i->first); 2496cb14a3feSDimitry Andric if (std::distance(__xeq.first, __xeq.second) != std::distance(__yeq.first, __yeq.second) || 24975f757f3fSDimitry Andric !std::is_permutation(__xeq.first, __xeq.second, __yeq.first)) 24980b57cec5SDimitry Andric return false; 24990b57cec5SDimitry Andric __i = __xeq.second; 25000b57cec5SDimitry Andric } 25010b57cec5SDimitry Andric return true; 25020b57cec5SDimitry Andric} 25030b57cec5SDimitry Andric 250406c3fb27SDimitry Andric#if _LIBCPP_STD_VER <= 17 250506c3fb27SDimitry Andric 25060b57cec5SDimitry Andrictemplate <class _Key, class _Tp, class _Hash, class _Pred, class _Alloc> 2507cb14a3feSDimitry Andricinline _LIBCPP_HIDE_FROM_ABI bool operator!=(const unordered_multimap<_Key, _Tp, _Hash, _Pred, _Alloc>& __x, 2508cb14a3feSDimitry Andric const unordered_multimap<_Key, _Tp, _Hash, _Pred, _Alloc>& __y) { 25090b57cec5SDimitry Andric return !(__x == __y); 25100b57cec5SDimitry Andric} 25110b57cec5SDimitry Andric 251206c3fb27SDimitry Andric#endif 251306c3fb27SDimitry Andric 25140b57cec5SDimitry Andric_LIBCPP_END_NAMESPACE_STD 25150b57cec5SDimitry Andric 251606c3fb27SDimitry Andric#if _LIBCPP_STD_VER >= 17 2517bdd1243dSDimitry Andric_LIBCPP_BEGIN_NAMESPACE_STD 2518bdd1243dSDimitry Andricnamespace pmr { 2519bdd1243dSDimitry Andrictemplate <class _KeyT, class _ValueT, class _HashT = std::hash<_KeyT>, class _PredT = std::equal_to<_KeyT>> 252006c3fb27SDimitry Andricusing unordered_map _LIBCPP_AVAILABILITY_PMR = 2521bdd1243dSDimitry Andric std::unordered_map<_KeyT, _ValueT, _HashT, _PredT, polymorphic_allocator<std::pair<const _KeyT, _ValueT>>>; 2522bdd1243dSDimitry Andric 2523bdd1243dSDimitry Andrictemplate <class _KeyT, class _ValueT, class _HashT = std::hash<_KeyT>, class _PredT = std::equal_to<_KeyT>> 252406c3fb27SDimitry Andricusing unordered_multimap _LIBCPP_AVAILABILITY_PMR = 2525bdd1243dSDimitry Andric std::unordered_multimap<_KeyT, _ValueT, _HashT, _PredT, polymorphic_allocator<std::pair<const _KeyT, _ValueT>>>; 2526bdd1243dSDimitry Andric} // namespace pmr 2527bdd1243dSDimitry Andric_LIBCPP_END_NAMESPACE_STD 2528bdd1243dSDimitry Andric#endif 2529bdd1243dSDimitry Andric 2530b3edf446SDimitry Andric_LIBCPP_POP_MACROS 2531b3edf446SDimitry Andric 2532bdd1243dSDimitry Andric#if !defined(_LIBCPP_REMOVE_TRANSITIVE_INCLUDES) && _LIBCPP_STD_VER <= 20 2533bdd1243dSDimitry Andric# include <algorithm> 2534bdd1243dSDimitry Andric# include <bit> 2535bdd1243dSDimitry Andric# include <concepts> 253606c3fb27SDimitry Andric# include <cstdlib> 2537bdd1243dSDimitry Andric# include <iterator> 253806c3fb27SDimitry Andric# include <type_traits> 2539bdd1243dSDimitry Andric#endif 2540bdd1243dSDimitry Andric 25410b57cec5SDimitry Andric#endif // _LIBCPP_UNORDERED_MAP 2542