2010-05-11 19:42:16 +00:00
|
|
|
// -*- C++ -*-
|
2021-11-17 16:25:01 -05:00
|
|
|
//===----------------------------------------------------------------------===//
|
2010-05-11 19:42:16 +00:00
|
|
|
//
|
2019-01-19 10:56:40 +00:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2010-05-11 19:42:16 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef _LIBCPP_MAP
|
|
|
|
#define _LIBCPP_MAP
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
|
|
|
map synopsis
|
|
|
|
|
|
|
|
namespace std
|
|
|
|
{
|
|
|
|
|
|
|
|
template <class Key, class T, class Compare = less<Key>,
|
|
|
|
class Allocator = allocator<pair<const Key, T>>>
|
|
|
|
class map
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
// types:
|
|
|
|
typedef Key key_type;
|
|
|
|
typedef T mapped_type;
|
|
|
|
typedef pair<const key_type, mapped_type> value_type;
|
|
|
|
typedef Compare key_compare;
|
|
|
|
typedef Allocator allocator_type;
|
|
|
|
typedef typename allocator_type::reference reference;
|
|
|
|
typedef typename allocator_type::const_reference const_reference;
|
|
|
|
typedef typename allocator_type::pointer pointer;
|
|
|
|
typedef typename allocator_type::const_pointer const_pointer;
|
|
|
|
typedef typename allocator_type::size_type size_type;
|
|
|
|
typedef typename allocator_type::difference_type difference_type;
|
|
|
|
|
|
|
|
typedef implementation-defined iterator;
|
|
|
|
typedef implementation-defined const_iterator;
|
|
|
|
typedef std::reverse_iterator<iterator> reverse_iterator;
|
|
|
|
typedef std::reverse_iterator<const_iterator> const_reverse_iterator;
|
2018-08-01 01:33:38 +00:00
|
|
|
typedef unspecified node_type; // C++17
|
|
|
|
typedef INSERT_RETURN_TYPE<iterator, node_type> insert_return_type; // C++17
|
2010-05-11 19:42:16 +00:00
|
|
|
|
|
|
|
class value_compare
|
|
|
|
{
|
|
|
|
friend class map;
|
|
|
|
protected:
|
|
|
|
key_compare comp;
|
|
|
|
|
|
|
|
value_compare(key_compare c);
|
|
|
|
public:
|
2021-05-25 14:34:18 -04:00
|
|
|
typedef bool result_type; // deprecated in C++17, removed in C++20
|
|
|
|
typedef value_type first_argument_type; // deprecated in C++17, removed in C++20
|
|
|
|
typedef value_type second_argument_type; // deprecated in C++17, removed in C++20
|
2010-05-11 19:42:16 +00:00
|
|
|
bool operator()(const value_type& x, const value_type& y) const;
|
|
|
|
};
|
|
|
|
|
|
|
|
// construct/copy/destroy:
|
2011-06-04 14:31:57 +00:00
|
|
|
map()
|
|
|
|
noexcept(
|
|
|
|
is_nothrow_default_constructible<allocator_type>::value &&
|
|
|
|
is_nothrow_default_constructible<key_compare>::value &&
|
|
|
|
is_nothrow_copy_constructible<key_compare>::value);
|
2010-05-11 19:42:16 +00:00
|
|
|
explicit map(const key_compare& comp);
|
|
|
|
map(const key_compare& comp, const allocator_type& a);
|
|
|
|
template <class InputIterator>
|
|
|
|
map(InputIterator first, InputIterator last,
|
|
|
|
const key_compare& comp = key_compare());
|
|
|
|
template <class InputIterator>
|
|
|
|
map(InputIterator first, InputIterator last,
|
|
|
|
const key_compare& comp, const allocator_type& a);
|
2023-07-10 17:16:56 -07:00
|
|
|
template<container-compatible-range<value_type> R>
|
|
|
|
map(from_range_t, R&& rg, const Compare& comp = Compare(), const Allocator& = Allocator()); // C++23
|
2010-05-11 19:42:16 +00:00
|
|
|
map(const map& m);
|
2011-06-04 14:31:57 +00:00
|
|
|
map(map&& m)
|
|
|
|
noexcept(
|
|
|
|
is_nothrow_move_constructible<allocator_type>::value &&
|
|
|
|
is_nothrow_move_constructible<key_compare>::value);
|
2010-05-11 19:42:16 +00:00
|
|
|
explicit map(const allocator_type& a);
|
|
|
|
map(const map& m, const allocator_type& a);
|
|
|
|
map(map&& m, const allocator_type& a);
|
|
|
|
map(initializer_list<value_type> il, const key_compare& comp = key_compare());
|
|
|
|
map(initializer_list<value_type> il, const key_compare& comp, const allocator_type& a);
|
2013-09-11 01:15:47 +00:00
|
|
|
template <class InputIterator>
|
|
|
|
map(InputIterator first, InputIterator last, const allocator_type& a)
|
|
|
|
: map(first, last, Compare(), a) {} // C++14
|
2023-07-10 17:16:56 -07:00
|
|
|
template<container-compatible-range<value_type> R>
|
|
|
|
map(from_range_t, R&& rg, const Allocator& a))
|
|
|
|
: map(from_range, std::forward<R>(rg), Compare(), a) { } // C++23
|
2013-09-11 01:15:47 +00:00
|
|
|
map(initializer_list<value_type> il, const allocator_type& a)
|
|
|
|
: map(il, Compare(), a) {} // C++14
|
|
|
|
~map();
|
2010-05-11 19:42:16 +00:00
|
|
|
|
|
|
|
map& operator=(const map& m);
|
2011-06-04 14:31:57 +00:00
|
|
|
map& operator=(map&& m)
|
|
|
|
noexcept(
|
|
|
|
allocator_type::propagate_on_container_move_assignment::value &&
|
|
|
|
is_nothrow_move_assignable<allocator_type>::value &&
|
2011-06-04 15:22:34 +00:00
|
|
|
is_nothrow_move_assignable<key_compare>::value);
|
2010-05-11 19:42:16 +00:00
|
|
|
map& operator=(initializer_list<value_type> il);
|
|
|
|
|
|
|
|
// iterators:
|
2011-06-04 15:22:34 +00:00
|
|
|
iterator begin() noexcept;
|
|
|
|
const_iterator begin() const noexcept;
|
|
|
|
iterator end() noexcept;
|
|
|
|
const_iterator end() const noexcept;
|
2010-05-11 19:42:16 +00:00
|
|
|
|
2011-06-04 15:22:34 +00:00
|
|
|
reverse_iterator rbegin() noexcept;
|
|
|
|
const_reverse_iterator rbegin() const noexcept;
|
|
|
|
reverse_iterator rend() noexcept;
|
|
|
|
const_reverse_iterator rend() const noexcept;
|
2010-05-11 19:42:16 +00:00
|
|
|
|
2011-06-04 15:22:34 +00:00
|
|
|
const_iterator cbegin() const noexcept;
|
|
|
|
const_iterator cend() const noexcept;
|
|
|
|
const_reverse_iterator crbegin() const noexcept;
|
|
|
|
const_reverse_iterator crend() const noexcept;
|
2010-05-11 19:42:16 +00:00
|
|
|
|
|
|
|
// capacity:
|
2011-06-04 15:22:34 +00:00
|
|
|
bool empty() const noexcept;
|
|
|
|
size_type size() const noexcept;
|
|
|
|
size_type max_size() const noexcept;
|
2010-05-11 19:42:16 +00:00
|
|
|
|
|
|
|
// element access:
|
|
|
|
mapped_type& operator[](const key_type& k);
|
|
|
|
mapped_type& operator[](key_type&& k);
|
|
|
|
|
|
|
|
mapped_type& at(const key_type& k);
|
|
|
|
const mapped_type& at(const key_type& k) const;
|
|
|
|
|
|
|
|
// modifiers:
|
|
|
|
template <class... Args>
|
|
|
|
pair<iterator, bool> emplace(Args&&... args);
|
|
|
|
template <class... Args>
|
|
|
|
iterator emplace_hint(const_iterator position, Args&&... args);
|
|
|
|
pair<iterator, bool> insert(const value_type& v);
|
2016-01-05 19:32:41 +00:00
|
|
|
pair<iterator, bool> insert( value_type&& v); // C++17
|
2010-05-11 19:42:16 +00:00
|
|
|
template <class P>
|
|
|
|
pair<iterator, bool> insert(P&& p);
|
|
|
|
iterator insert(const_iterator position, const value_type& v);
|
2016-01-05 19:32:41 +00:00
|
|
|
iterator insert(const_iterator position, value_type&& v); // C++17
|
2010-05-11 19:42:16 +00:00
|
|
|
template <class P>
|
|
|
|
iterator insert(const_iterator position, P&& p);
|
|
|
|
template <class InputIterator>
|
|
|
|
void insert(InputIterator first, InputIterator last);
|
2023-07-10 17:16:56 -07:00
|
|
|
template<container-compatible-range<value_type> R>
|
|
|
|
void insert_range(R&& rg); // C++23
|
2010-05-11 19:42:16 +00:00
|
|
|
void insert(initializer_list<value_type> il);
|
|
|
|
|
2018-08-01 01:33:38 +00:00
|
|
|
node_type extract(const_iterator position); // C++17
|
|
|
|
node_type extract(const key_type& x); // C++17
|
|
|
|
insert_return_type insert(node_type&& nh); // C++17
|
|
|
|
iterator insert(const_iterator hint, node_type&& nh); // C++17
|
|
|
|
|
2015-07-07 03:37:33 +00:00
|
|
|
template <class... Args>
|
|
|
|
pair<iterator, bool> try_emplace(const key_type& k, Args&&... args); // C++17
|
|
|
|
template <class... Args>
|
|
|
|
pair<iterator, bool> try_emplace(key_type&& k, Args&&... args); // C++17
|
|
|
|
template <class... Args>
|
|
|
|
iterator try_emplace(const_iterator hint, const key_type& k, Args&&... args); // C++17
|
|
|
|
template <class... Args>
|
|
|
|
iterator try_emplace(const_iterator hint, key_type&& k, Args&&... args); // C++17
|
|
|
|
template <class M>
|
|
|
|
pair<iterator, bool> insert_or_assign(const key_type& k, M&& obj); // C++17
|
|
|
|
template <class M>
|
|
|
|
pair<iterator, bool> insert_or_assign(key_type&& k, M&& obj); // C++17
|
|
|
|
template <class M>
|
|
|
|
iterator insert_or_assign(const_iterator hint, const key_type& k, M&& obj); // C++17
|
|
|
|
template <class M>
|
|
|
|
iterator insert_or_assign(const_iterator hint, key_type&& k, M&& obj); // C++17
|
|
|
|
|
2010-05-11 19:42:16 +00:00
|
|
|
iterator erase(const_iterator position);
|
2015-05-10 13:35:00 +00:00
|
|
|
iterator erase(iterator position); // C++14
|
2010-05-11 19:42:16 +00:00
|
|
|
size_type erase(const key_type& k);
|
|
|
|
iterator erase(const_iterator first, const_iterator last);
|
2011-06-04 15:22:34 +00:00
|
|
|
void clear() noexcept;
|
2010-05-11 19:42:16 +00:00
|
|
|
|
2018-10-31 17:31:35 +00:00
|
|
|
template<class C2>
|
|
|
|
void merge(map<Key, T, C2, Allocator>& source); // C++17
|
|
|
|
template<class C2>
|
|
|
|
void merge(map<Key, T, C2, Allocator>&& source); // C++17
|
|
|
|
template<class C2>
|
|
|
|
void merge(multimap<Key, T, C2, Allocator>& source); // C++17
|
|
|
|
template<class C2>
|
|
|
|
void merge(multimap<Key, T, C2, Allocator>&& source); // C++17
|
|
|
|
|
2011-06-04 14:31:57 +00:00
|
|
|
void swap(map& m)
|
2015-07-13 20:04:56 +00:00
|
|
|
noexcept(allocator_traits<allocator_type>::is_always_equal::value &&
|
2016-04-21 23:38:59 +00:00
|
|
|
is_nothrow_swappable<key_compare>::value); // C++17
|
2010-05-11 19:42:16 +00:00
|
|
|
|
|
|
|
// observers:
|
2011-06-04 15:22:34 +00:00
|
|
|
allocator_type get_allocator() const noexcept;
|
2010-05-11 19:42:16 +00:00
|
|
|
key_compare key_comp() const;
|
|
|
|
value_compare value_comp() const;
|
|
|
|
|
|
|
|
// map operations:
|
|
|
|
iterator find(const key_type& k);
|
|
|
|
const_iterator find(const key_type& k) const;
|
2013-08-13 22:18:47 +00:00
|
|
|
template<typename K>
|
|
|
|
iterator find(const K& x); // C++14
|
|
|
|
template<typename K>
|
|
|
|
const_iterator find(const K& x) const; // C++14
|
2021-04-13 17:10:55 +02:00
|
|
|
|
2013-08-13 22:18:47 +00:00
|
|
|
template<typename K>
|
2014-08-24 23:54:16 +00:00
|
|
|
size_type count(const K& x) const; // C++14
|
2010-05-11 19:42:16 +00:00
|
|
|
size_type count(const key_type& k) const;
|
2021-04-13 17:10:55 +02:00
|
|
|
|
|
|
|
bool contains(const key_type& x) const; // C++20
|
|
|
|
template<class K> bool contains(const K& x) const; // C++20
|
|
|
|
|
2010-05-11 19:42:16 +00:00
|
|
|
iterator lower_bound(const key_type& k);
|
|
|
|
const_iterator lower_bound(const key_type& k) const;
|
2013-08-13 22:18:47 +00:00
|
|
|
template<typename K>
|
|
|
|
iterator lower_bound(const K& x); // C++14
|
|
|
|
template<typename K>
|
|
|
|
const_iterator lower_bound(const K& x) const; // C++14
|
|
|
|
|
2010-05-11 19:42:16 +00:00
|
|
|
iterator upper_bound(const key_type& k);
|
|
|
|
const_iterator upper_bound(const key_type& k) const;
|
2013-08-13 22:18:47 +00:00
|
|
|
template<typename K>
|
|
|
|
iterator upper_bound(const K& x); // C++14
|
|
|
|
template<typename K>
|
|
|
|
const_iterator upper_bound(const K& x) const; // C++14
|
|
|
|
|
2010-05-11 19:42:16 +00:00
|
|
|
pair<iterator,iterator> equal_range(const key_type& k);
|
|
|
|
pair<const_iterator,const_iterator> equal_range(const key_type& k) const;
|
2013-08-13 22:18:47 +00:00
|
|
|
template<typename K>
|
|
|
|
pair<iterator,iterator> equal_range(const K& x); // C++14
|
|
|
|
template<typename K>
|
|
|
|
pair<const_iterator,const_iterator> equal_range(const K& x) const; // C++14
|
2010-05-11 19:42:16 +00:00
|
|
|
};
|
|
|
|
|
2021-11-09 09:21:02 -08:00
|
|
|
template <class InputIterator,
|
|
|
|
class Compare = less<iter_key_t<InputIterator>>,
|
|
|
|
class Allocator = allocator<iter_to_alloc_t<InputIterator>>>
|
|
|
|
map(InputIterator, InputIterator, Compare = Compare(), Allocator = Allocator())
|
|
|
|
-> map<iter_key_t<InputIterator>, iter_val_t<InputIterator>, Compare, Allocator>; // C++17
|
|
|
|
|
2023-07-10 17:16:56 -07:00
|
|
|
template<ranges::input_range R, class Compare = less<range-key-type<R>,
|
|
|
|
class Allocator = allocator<range-to-alloc-type<R>>>
|
|
|
|
map(from_range_t, R&&, Compare = Compare(), Allocator = Allocator())
|
|
|
|
-> map<range-key-type<R>, range-mapped-type<R>, Compare, Allocator>; // C++23
|
|
|
|
|
2021-11-09 09:21:02 -08:00
|
|
|
template<class Key, class T, class Compare = less<Key>,
|
|
|
|
class Allocator = allocator<pair<const Key, T>>>
|
|
|
|
map(initializer_list<pair<const Key, T>>, Compare = Compare(), Allocator = Allocator())
|
|
|
|
-> map<Key, T, Compare, Allocator>; // C++17
|
|
|
|
|
|
|
|
template <class InputIterator, class Allocator>
|
|
|
|
map(InputIterator, InputIterator, Allocator)
|
|
|
|
-> map<iter_key_t<InputIterator>, iter_val_t<InputIterator>, less<iter_key_t<InputIterator>>,
|
|
|
|
Allocator>; // C++17
|
|
|
|
|
2023-07-10 17:16:56 -07:00
|
|
|
template<ranges::input_range R, class Allocator>
|
|
|
|
map(from_range_t, R&&, Allocator)
|
|
|
|
-> map<range-key-type<R>, range-mapped-type<R>, less<range-key-type<R>>, Allocator>; // C++23
|
|
|
|
|
2021-11-09 09:21:02 -08:00
|
|
|
template<class Key, class T, class Allocator>
|
|
|
|
map(initializer_list<pair<const Key, T>>, Allocator) -> map<Key, T, less<Key>, Allocator>; // C++17
|
|
|
|
|
2010-05-11 19:42:16 +00:00
|
|
|
template <class Key, class T, class Compare, class Allocator>
|
|
|
|
bool
|
|
|
|
operator==(const map<Key, T, Compare, Allocator>& x,
|
|
|
|
const map<Key, T, Compare, Allocator>& y);
|
|
|
|
|
|
|
|
template <class Key, class T, class Compare, class Allocator>
|
|
|
|
bool
|
|
|
|
operator< (const map<Key, T, Compare, Allocator>& x,
|
2023-03-15 15:23:53 +01:00
|
|
|
const map<Key, T, Compare, Allocator>& y); // removed in C++20
|
2010-05-11 19:42:16 +00:00
|
|
|
|
|
|
|
template <class Key, class T, class Compare, class Allocator>
|
|
|
|
bool
|
|
|
|
operator!=(const map<Key, T, Compare, Allocator>& x,
|
2023-03-15 15:23:53 +01:00
|
|
|
const map<Key, T, Compare, Allocator>& y); // removed in C++20
|
2010-05-11 19:42:16 +00:00
|
|
|
|
|
|
|
template <class Key, class T, class Compare, class Allocator>
|
|
|
|
bool
|
|
|
|
operator> (const map<Key, T, Compare, Allocator>& x,
|
2023-03-15 15:23:53 +01:00
|
|
|
const map<Key, T, Compare, Allocator>& y); // removed in C++20
|
2010-05-11 19:42:16 +00:00
|
|
|
|
|
|
|
template <class Key, class T, class Compare, class Allocator>
|
|
|
|
bool
|
|
|
|
operator>=(const map<Key, T, Compare, Allocator>& x,
|
2023-03-15 15:23:53 +01:00
|
|
|
const map<Key, T, Compare, Allocator>& y); // removed in C++20
|
2010-05-11 19:42:16 +00:00
|
|
|
|
|
|
|
template <class Key, class T, class Compare, class Allocator>
|
|
|
|
bool
|
|
|
|
operator<=(const map<Key, T, Compare, Allocator>& x,
|
2023-03-15 15:23:53 +01:00
|
|
|
const map<Key, T, Compare, Allocator>& y); // removed in C++20
|
|
|
|
|
|
|
|
template<class Key, class T, class Compare, class Allocator>
|
|
|
|
synth-three-way-result<pair<const Key, T>>
|
|
|
|
operator<=>(const map<Key, T, Compare, Allocator>& x,
|
|
|
|
const map<Key, T, Compare, Allocator>& y); // since C++20
|
2010-05-11 19:42:16 +00:00
|
|
|
|
|
|
|
// specialized algorithms:
|
|
|
|
template <class Key, class T, class Compare, class Allocator>
|
|
|
|
void
|
2011-06-04 14:31:57 +00:00
|
|
|
swap(map<Key, T, Compare, Allocator>& x, map<Key, T, Compare, Allocator>& y)
|
|
|
|
noexcept(noexcept(x.swap(y)));
|
2010-05-11 19:42:16 +00:00
|
|
|
|
2018-12-14 18:49:35 +00:00
|
|
|
template <class Key, class T, class Compare, class Allocator, class Predicate>
|
2020-05-02 13:58:03 +02:00
|
|
|
typename map<Key, T, Compare, Allocator>::size_type
|
|
|
|
erase_if(map<Key, T, Compare, Allocator>& c, Predicate pred); // C++20
|
2018-12-14 18:49:35 +00:00
|
|
|
|
|
|
|
|
2010-05-11 19:42:16 +00:00
|
|
|
template <class Key, class T, class Compare = less<Key>,
|
|
|
|
class Allocator = allocator<pair<const Key, T>>>
|
|
|
|
class multimap
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
// types:
|
|
|
|
typedef Key key_type;
|
|
|
|
typedef T mapped_type;
|
|
|
|
typedef pair<const key_type,mapped_type> value_type;
|
|
|
|
typedef Compare key_compare;
|
|
|
|
typedef Allocator allocator_type;
|
|
|
|
typedef typename allocator_type::reference reference;
|
|
|
|
typedef typename allocator_type::const_reference const_reference;
|
|
|
|
typedef typename allocator_type::size_type size_type;
|
|
|
|
typedef typename allocator_type::difference_type difference_type;
|
|
|
|
typedef typename allocator_type::pointer pointer;
|
|
|
|
typedef typename allocator_type::const_pointer const_pointer;
|
|
|
|
|
|
|
|
typedef implementation-defined iterator;
|
|
|
|
typedef implementation-defined const_iterator;
|
|
|
|
typedef std::reverse_iterator<iterator> reverse_iterator;
|
|
|
|
typedef std::reverse_iterator<const_iterator> const_reverse_iterator;
|
2018-08-01 01:33:38 +00:00
|
|
|
typedef unspecified node_type; // C++17
|
2010-05-11 19:42:16 +00:00
|
|
|
|
|
|
|
class value_compare
|
|
|
|
{
|
|
|
|
friend class multimap;
|
|
|
|
protected:
|
|
|
|
key_compare comp;
|
|
|
|
value_compare(key_compare c);
|
|
|
|
public:
|
2021-05-25 14:34:18 -04:00
|
|
|
typedef bool result_type; // deprecated in C++17, removed in C++20
|
|
|
|
typedef value_type first_argument_type; // deprecated in C++17, removed in C++20
|
|
|
|
typedef value_type second_argument_type; // deprecated in C++17, removed in C++20
|
2010-05-11 19:42:16 +00:00
|
|
|
bool operator()(const value_type& x, const value_type& y) const;
|
|
|
|
};
|
|
|
|
|
|
|
|
// construct/copy/destroy:
|
2011-06-04 14:31:57 +00:00
|
|
|
multimap()
|
|
|
|
noexcept(
|
|
|
|
is_nothrow_default_constructible<allocator_type>::value &&
|
|
|
|
is_nothrow_default_constructible<key_compare>::value &&
|
|
|
|
is_nothrow_copy_constructible<key_compare>::value);
|
|
|
|
explicit multimap(const key_compare& comp);
|
2010-05-11 19:42:16 +00:00
|
|
|
multimap(const key_compare& comp, const allocator_type& a);
|
|
|
|
template <class InputIterator>
|
|
|
|
multimap(InputIterator first, InputIterator last, const key_compare& comp);
|
|
|
|
template <class InputIterator>
|
|
|
|
multimap(InputIterator first, InputIterator last, const key_compare& comp,
|
|
|
|
const allocator_type& a);
|
2023-07-10 17:16:56 -07:00
|
|
|
template<container-compatible-range<value_type> R>
|
|
|
|
multimap(from_range_t, R&& rg,
|
|
|
|
const Compare& comp = Compare(), const Allocator& = Allocator()); // C++23
|
2010-05-11 19:42:16 +00:00
|
|
|
multimap(const multimap& m);
|
2011-06-04 14:31:57 +00:00
|
|
|
multimap(multimap&& m)
|
|
|
|
noexcept(
|
|
|
|
is_nothrow_move_constructible<allocator_type>::value &&
|
|
|
|
is_nothrow_move_constructible<key_compare>::value);
|
2010-05-11 19:42:16 +00:00
|
|
|
explicit multimap(const allocator_type& a);
|
|
|
|
multimap(const multimap& m, const allocator_type& a);
|
|
|
|
multimap(multimap&& m, const allocator_type& a);
|
|
|
|
multimap(initializer_list<value_type> il, const key_compare& comp = key_compare());
|
|
|
|
multimap(initializer_list<value_type> il, const key_compare& comp,
|
|
|
|
const allocator_type& a);
|
2013-09-11 01:15:47 +00:00
|
|
|
template <class InputIterator>
|
|
|
|
multimap(InputIterator first, InputIterator last, const allocator_type& a)
|
|
|
|
: multimap(first, last, Compare(), a) {} // C++14
|
2023-07-10 17:16:56 -07:00
|
|
|
template<container-compatible-range<value_type> R>
|
|
|
|
multimap(from_range_t, R&& rg, const Allocator& a))
|
|
|
|
: multimap(from_range, std::forward<R>(rg), Compare(), a) { } // C++23
|
2013-09-11 01:15:47 +00:00
|
|
|
multimap(initializer_list<value_type> il, const allocator_type& a)
|
|
|
|
: multimap(il, Compare(), a) {} // C++14
|
2010-05-11 19:42:16 +00:00
|
|
|
~multimap();
|
|
|
|
|
|
|
|
multimap& operator=(const multimap& m);
|
2011-06-04 14:31:57 +00:00
|
|
|
multimap& operator=(multimap&& m)
|
|
|
|
noexcept(
|
|
|
|
allocator_type::propagate_on_container_move_assignment::value &&
|
|
|
|
is_nothrow_move_assignable<allocator_type>::value &&
|
2011-06-04 15:22:34 +00:00
|
|
|
is_nothrow_move_assignable<key_compare>::value);
|
2010-05-11 19:42:16 +00:00
|
|
|
multimap& operator=(initializer_list<value_type> il);
|
|
|
|
|
|
|
|
// iterators:
|
2011-06-04 15:22:34 +00:00
|
|
|
iterator begin() noexcept;
|
|
|
|
const_iterator begin() const noexcept;
|
|
|
|
iterator end() noexcept;
|
|
|
|
const_iterator end() const noexcept;
|
2010-05-11 19:42:16 +00:00
|
|
|
|
2011-06-04 15:22:34 +00:00
|
|
|
reverse_iterator rbegin() noexcept;
|
|
|
|
const_reverse_iterator rbegin() const noexcept;
|
|
|
|
reverse_iterator rend() noexcept;
|
|
|
|
const_reverse_iterator rend() const noexcept;
|
2010-05-11 19:42:16 +00:00
|
|
|
|
2011-06-04 15:22:34 +00:00
|
|
|
const_iterator cbegin() const noexcept;
|
|
|
|
const_iterator cend() const noexcept;
|
|
|
|
const_reverse_iterator crbegin() const noexcept;
|
|
|
|
const_reverse_iterator crend() const noexcept;
|
2010-05-11 19:42:16 +00:00
|
|
|
|
|
|
|
// capacity:
|
2011-06-04 15:22:34 +00:00
|
|
|
bool empty() const noexcept;
|
|
|
|
size_type size() const noexcept;
|
|
|
|
size_type max_size() const noexcept;
|
2010-05-11 19:42:16 +00:00
|
|
|
|
|
|
|
// modifiers:
|
|
|
|
template <class... Args>
|
|
|
|
iterator emplace(Args&&... args);
|
|
|
|
template <class... Args>
|
|
|
|
iterator emplace_hint(const_iterator position, Args&&... args);
|
|
|
|
iterator insert(const value_type& v);
|
2016-01-05 19:32:41 +00:00
|
|
|
iterator insert( value_type&& v); // C++17
|
2010-05-11 19:42:16 +00:00
|
|
|
template <class P>
|
|
|
|
iterator insert(P&& p);
|
|
|
|
iterator insert(const_iterator position, const value_type& v);
|
2016-01-05 19:32:41 +00:00
|
|
|
iterator insert(const_iterator position, value_type&& v); // C++17
|
2010-05-11 19:42:16 +00:00
|
|
|
template <class P>
|
|
|
|
iterator insert(const_iterator position, P&& p);
|
|
|
|
template <class InputIterator>
|
|
|
|
void insert(InputIterator first, InputIterator last);
|
2023-07-10 17:16:56 -07:00
|
|
|
template<container-compatible-range<value_type> R>
|
|
|
|
void insert_range(R&& rg); // C++23
|
2010-05-11 19:42:16 +00:00
|
|
|
void insert(initializer_list<value_type> il);
|
|
|
|
|
2018-08-01 01:33:38 +00:00
|
|
|
node_type extract(const_iterator position); // C++17
|
|
|
|
node_type extract(const key_type& x); // C++17
|
|
|
|
iterator insert(node_type&& nh); // C++17
|
|
|
|
iterator insert(const_iterator hint, node_type&& nh); // C++17
|
|
|
|
|
2010-05-11 19:42:16 +00:00
|
|
|
iterator erase(const_iterator position);
|
2015-05-10 13:35:00 +00:00
|
|
|
iterator erase(iterator position); // C++14
|
2010-05-11 19:42:16 +00:00
|
|
|
size_type erase(const key_type& k);
|
|
|
|
iterator erase(const_iterator first, const_iterator last);
|
2011-06-04 15:22:34 +00:00
|
|
|
void clear() noexcept;
|
2010-05-11 19:42:16 +00:00
|
|
|
|
2018-10-31 17:31:35 +00:00
|
|
|
template<class C2>
|
|
|
|
void merge(multimap<Key, T, C2, Allocator>& source); // C++17
|
|
|
|
template<class C2>
|
|
|
|
void merge(multimap<Key, T, C2, Allocator>&& source); // C++17
|
|
|
|
template<class C2>
|
|
|
|
void merge(map<Key, T, C2, Allocator>& source); // C++17
|
|
|
|
template<class C2>
|
|
|
|
void merge(map<Key, T, C2, Allocator>&& source); // C++17
|
|
|
|
|
2011-06-04 14:31:57 +00:00
|
|
|
void swap(multimap& m)
|
2015-07-13 20:04:56 +00:00
|
|
|
noexcept(allocator_traits<allocator_type>::is_always_equal::value &&
|
2016-04-21 23:38:59 +00:00
|
|
|
is_nothrow_swappable<key_compare>::value); // C++17
|
2010-05-11 19:42:16 +00:00
|
|
|
|
|
|
|
// observers:
|
2011-06-04 15:22:34 +00:00
|
|
|
allocator_type get_allocator() const noexcept;
|
2010-05-11 19:42:16 +00:00
|
|
|
key_compare key_comp() const;
|
|
|
|
value_compare value_comp() const;
|
|
|
|
|
|
|
|
// map operations:
|
|
|
|
iterator find(const key_type& k);
|
|
|
|
const_iterator find(const key_type& k) const;
|
2013-08-13 22:18:47 +00:00
|
|
|
template<typename K>
|
|
|
|
iterator find(const K& x); // C++14
|
|
|
|
template<typename K>
|
|
|
|
const_iterator find(const K& x) const; // C++14
|
2021-04-13 17:10:55 +02:00
|
|
|
|
2013-08-13 22:18:47 +00:00
|
|
|
template<typename K>
|
2014-08-24 23:54:16 +00:00
|
|
|
size_type count(const K& x) const; // C++14
|
2010-05-11 19:42:16 +00:00
|
|
|
size_type count(const key_type& k) const;
|
2021-04-13 17:10:55 +02:00
|
|
|
|
|
|
|
bool contains(const key_type& x) const; // C++20
|
|
|
|
template<class K> bool contains(const K& x) const; // C++20
|
|
|
|
|
2010-05-11 19:42:16 +00:00
|
|
|
iterator lower_bound(const key_type& k);
|
|
|
|
const_iterator lower_bound(const key_type& k) const;
|
2013-08-13 22:18:47 +00:00
|
|
|
template<typename K>
|
|
|
|
iterator lower_bound(const K& x); // C++14
|
|
|
|
template<typename K>
|
|
|
|
const_iterator lower_bound(const K& x) const; // C++14
|
|
|
|
|
2010-05-11 19:42:16 +00:00
|
|
|
iterator upper_bound(const key_type& k);
|
|
|
|
const_iterator upper_bound(const key_type& k) const;
|
2013-08-13 22:18:47 +00:00
|
|
|
template<typename K>
|
|
|
|
iterator upper_bound(const K& x); // C++14
|
|
|
|
template<typename K>
|
|
|
|
const_iterator upper_bound(const K& x) const; // C++14
|
|
|
|
|
2010-05-11 19:42:16 +00:00
|
|
|
pair<iterator,iterator> equal_range(const key_type& k);
|
|
|
|
pair<const_iterator,const_iterator> equal_range(const key_type& k) const;
|
2013-08-13 22:18:47 +00:00
|
|
|
template<typename K>
|
|
|
|
pair<iterator,iterator> equal_range(const K& x); // C++14
|
|
|
|
template<typename K>
|
|
|
|
pair<const_iterator,const_iterator> equal_range(const K& x) const; // C++14
|
2010-05-11 19:42:16 +00:00
|
|
|
};
|
|
|
|
|
2021-11-09 09:21:02 -08:00
|
|
|
template <class InputIterator,
|
|
|
|
class Compare = less<iter_key_t<InputIterator>>,
|
|
|
|
class Allocator = allocator<iter_to_alloc_t<InputIterator>>>
|
|
|
|
multimap(InputIterator, InputIterator, Compare = Compare(), Allocator = Allocator())
|
|
|
|
-> multimap<iter_key_t<InputIterator>, iter_val_t<InputIterator>, Compare, Allocator>; // C++17
|
|
|
|
|
2023-07-10 17:16:56 -07:00
|
|
|
template<ranges::input_range R, class Compare = less<range-key-type<R>>,
|
|
|
|
class Allocator = allocator<range-to-alloc-type<R>>>
|
|
|
|
multimap(from_range_t, R&&, Compare = Compare(), Allocator = Allocator())
|
|
|
|
-> multimap<range-key-type<R>, range-mapped-type<R>, Compare, Allocator>; // C++23
|
|
|
|
|
2021-11-09 09:21:02 -08:00
|
|
|
template<class Key, class T, class Compare = less<Key>,
|
|
|
|
class Allocator = allocator<pair<const Key, T>>>
|
|
|
|
multimap(initializer_list<pair<const Key, T>>, Compare = Compare(), Allocator = Allocator())
|
|
|
|
-> multimap<Key, T, Compare, Allocator>; // C++17
|
|
|
|
|
|
|
|
template <class InputIterator, class Allocator>
|
|
|
|
multimap(InputIterator, InputIterator, Allocator)
|
|
|
|
-> multimap<iter_key_t<InputIterator>, iter_val_t<InputIterator>,
|
|
|
|
less<iter_key_t<InputIterator>>, Allocator>; // C++17
|
|
|
|
|
2023-07-10 17:16:56 -07:00
|
|
|
template<ranges::input_range R, class Allocator>
|
|
|
|
multimap(from_range_t, R&&, Allocator)
|
|
|
|
-> multimap<range-key-type<R>, range-mapped-type<R>, less<range-key-type<R>>, Allocator>; // C++23
|
|
|
|
|
2021-11-09 09:21:02 -08:00
|
|
|
template<class Key, class T, class Allocator>
|
|
|
|
multimap(initializer_list<pair<const Key, T>>, Allocator)
|
|
|
|
-> multimap<Key, T, less<Key>, Allocator>; // C++17
|
|
|
|
|
2010-05-11 19:42:16 +00:00
|
|
|
template <class Key, class T, class Compare, class Allocator>
|
|
|
|
bool
|
|
|
|
operator==(const multimap<Key, T, Compare, Allocator>& x,
|
|
|
|
const multimap<Key, T, Compare, Allocator>& y);
|
|
|
|
|
|
|
|
template <class Key, class T, class Compare, class Allocator>
|
|
|
|
bool
|
|
|
|
operator< (const multimap<Key, T, Compare, Allocator>& x,
|
2023-03-15 15:23:53 +01:00
|
|
|
const multimap<Key, T, Compare, Allocator>& y); // removed in C++20
|
2010-05-11 19:42:16 +00:00
|
|
|
|
|
|
|
template <class Key, class T, class Compare, class Allocator>
|
|
|
|
bool
|
|
|
|
operator!=(const multimap<Key, T, Compare, Allocator>& x,
|
2023-03-15 15:23:53 +01:00
|
|
|
const multimap<Key, T, Compare, Allocator>& y); // removed in C++20
|
2010-05-11 19:42:16 +00:00
|
|
|
|
|
|
|
template <class Key, class T, class Compare, class Allocator>
|
|
|
|
bool
|
|
|
|
operator> (const multimap<Key, T, Compare, Allocator>& x,
|
2023-03-15 15:23:53 +01:00
|
|
|
const multimap<Key, T, Compare, Allocator>& y); // removed in C++20
|
2010-05-11 19:42:16 +00:00
|
|
|
|
|
|
|
template <class Key, class T, class Compare, class Allocator>
|
|
|
|
bool
|
|
|
|
operator>=(const multimap<Key, T, Compare, Allocator>& x,
|
2023-03-15 15:23:53 +01:00
|
|
|
const multimap<Key, T, Compare, Allocator>& y); // removed in C++20
|
2010-05-11 19:42:16 +00:00
|
|
|
|
|
|
|
template <class Key, class T, class Compare, class Allocator>
|
|
|
|
bool
|
|
|
|
operator<=(const multimap<Key, T, Compare, Allocator>& x,
|
2023-03-15 15:23:53 +01:00
|
|
|
const multimap<Key, T, Compare, Allocator>& y); // removed in C++20
|
|
|
|
|
|
|
|
template<class Key, class T, class Compare, class Allocator>
|
|
|
|
synth-three-way-result<pair<const Key, T>>
|
|
|
|
operator<=>(const multimap<Key, T, Compare, Allocator>& x,
|
|
|
|
const multimap<Key, T, Compare, Allocator>& y); // since c++20
|
2010-05-11 19:42:16 +00:00
|
|
|
|
|
|
|
// specialized algorithms:
|
|
|
|
template <class Key, class T, class Compare, class Allocator>
|
|
|
|
void
|
|
|
|
swap(multimap<Key, T, Compare, Allocator>& x,
|
2011-06-04 14:31:57 +00:00
|
|
|
multimap<Key, T, Compare, Allocator>& y)
|
|
|
|
noexcept(noexcept(x.swap(y)));
|
2010-05-11 19:42:16 +00:00
|
|
|
|
2018-12-14 18:49:35 +00:00
|
|
|
template <class Key, class T, class Compare, class Allocator, class Predicate>
|
2020-05-02 13:58:03 +02:00
|
|
|
typename multimap<Key, T, Compare, Allocator>::size_type
|
|
|
|
erase_if(multimap<Key, T, Compare, Allocator>& c, Predicate pred); // C++20
|
2018-12-14 18:49:35 +00:00
|
|
|
|
2010-05-11 19:42:16 +00:00
|
|
|
} // std
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2022-02-15 18:18:08 +01:00
|
|
|
#include <__algorithm/equal.h>
|
|
|
|
#include <__algorithm/lexicographical_compare.h>
|
2023-03-15 15:23:53 +01:00
|
|
|
#include <__algorithm/lexicographical_compare_three_way.h>
|
2024-02-29 10:12:22 -05:00
|
|
|
#include <__assert>
|
2023-03-29 16:48:20 -04:00
|
|
|
#include <__availability>
|
2010-05-11 19:42:16 +00:00
|
|
|
#include <__config>
|
2022-05-21 00:45:51 +02:00
|
|
|
#include <__functional/binary_function.h>
|
2021-07-01 09:25:35 -04:00
|
|
|
#include <__functional/is_transparent.h>
|
2022-05-21 00:45:51 +02:00
|
|
|
#include <__functional/operations.h>
|
2022-06-10 19:53:10 +02:00
|
|
|
#include <__iterator/erase_if_container.h>
|
2021-11-09 09:21:02 -08:00
|
|
|
#include <__iterator/iterator_traits.h>
|
2023-07-10 17:16:56 -07:00
|
|
|
#include <__iterator/ranges_iterator_traits.h>
|
2022-06-10 19:53:10 +02:00
|
|
|
#include <__iterator/reverse_iterator.h>
|
2023-03-01 20:49:22 +01:00
|
|
|
#include <__memory/addressof.h>
|
2022-09-05 00:01:15 +02:00
|
|
|
#include <__memory/allocator.h>
|
2022-10-06 16:53:30 -04:00
|
|
|
#include <__memory_resource/polymorphic_allocator.h>
|
2018-08-01 01:33:38 +00:00
|
|
|
#include <__node_handle>
|
2023-07-10 17:16:56 -07:00
|
|
|
#include <__ranges/concepts.h>
|
|
|
|
#include <__ranges/container_compatible_range.h>
|
|
|
|
#include <__ranges/from_range.h>
|
2021-05-12 23:04:03 -04:00
|
|
|
#include <__tree>
|
2022-09-05 00:01:15 +02:00
|
|
|
#include <__type_traits/is_allocator.h>
|
2021-06-05 02:47:47 +00:00
|
|
|
#include <__utility/forward.h>
|
2022-09-05 00:01:15 +02:00
|
|
|
#include <__utility/piecewise_construct.h>
|
2022-03-05 19:17:07 +01:00
|
|
|
#include <__utility/swap.h>
|
2023-10-29 18:31:37 +01:00
|
|
|
#include <stdexcept>
|
2022-09-05 00:01:15 +02:00
|
|
|
#include <tuple>
|
2018-09-12 19:41:40 +00:00
|
|
|
#include <version>
|
2010-05-11 19:42:16 +00:00
|
|
|
|
2022-06-16 22:43:46 +02:00
|
|
|
// standard-mandated includes
|
|
|
|
|
|
|
|
// [iterator.range]
|
|
|
|
#include <__iterator/access.h>
|
|
|
|
#include <__iterator/data.h>
|
|
|
|
#include <__iterator/empty.h>
|
|
|
|
#include <__iterator/reverse_access.h>
|
|
|
|
#include <__iterator/size.h>
|
|
|
|
|
|
|
|
// [associative.map.syn]
|
|
|
|
#include <compare>
|
|
|
|
#include <initializer_list>
|
|
|
|
|
2011-10-17 20:05:10 +00:00
|
|
|
#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
|
2022-02-01 20:16:40 -05:00
|
|
|
# pragma GCC system_header
|
2011-10-17 20:05:10 +00:00
|
|
|
#endif
|
2010-05-11 19:42:16 +00:00
|
|
|
|
[libc++] Fix missing and incorrect push/pop macros (#79204)
We recently noticed that the unwrap_iter.h file was pushing macros, but
it was pushing them again instead of popping them at the end of the
file. This led to libc++ basically swallowing any custom definition of
these macros in user code:
#define min HELLO
#include <algorithm>
// min is not HELLO anymore, it's not defined
While investigating this issue, I noticed that our push/pop pragmas were
actually entirely wrong too. Indeed, instead of pushing macros like
`move`, we'd push `move(int, int)` in the pragma, which is not a valid
macro name. As a result, we would not actually push macros like `move`
-- instead we'd simply undefine them. This led to the following code not
working:
#define move HELLO
#include <algorithm>
// move is not HELLO anymore
Fixing the pragma push/pop incantations led to a cascade of issues
because we use identifiers like `move` in a large number of places, and
all of these headers would now need to do the push/pop dance.
This patch fixes all these issues. First, it adds a check that we don't
swallow important names like min, max, move or refresh as explained
above. This is done by augmenting the existing
system_reserved_names.gen.py test to also check that the macros are what
we expect after including each header.
Second, it fixes the push/pop pragmas to work properly and adds missing
pragmas to all the files I could detect a failure in via the newly added
test.
rdar://121365472
2024-01-25 15:48:46 -05:00
|
|
|
_LIBCPP_PUSH_MACROS
|
|
|
|
#include <__undef_macros>
|
|
|
|
|
2010-05-11 19:42:16 +00:00
|
|
|
_LIBCPP_BEGIN_NAMESPACE_STD
|
|
|
|
|
2018-12-06 21:46:17 +00:00
|
|
|
template <class _Key,
|
|
|
|
class _CP,
|
|
|
|
class _Compare,
|
|
|
|
bool = is_empty<_Compare>::value && !__libcpp_is_final<_Compare>::value>
|
2010-05-11 19:42:16 +00:00
|
|
|
class __map_value_compare : private _Compare {
|
|
|
|
public:
|
2011-06-04 14:31:57 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI __map_value_compare() _NOEXCEPT_(is_nothrow_default_constructible<_Compare>::value)
|
|
|
|
: _Compare() {}
|
|
|
|
_LIBCPP_HIDE_FROM_ABI __map_value_compare(_Compare __c) _NOEXCEPT_(is_nothrow_copy_constructible<_Compare>::value)
|
2022-07-08 18:17:26 +02:00
|
|
|
: _Compare(__c) {}
|
2011-06-04 14:31:57 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI const _Compare& key_comp() const _NOEXCEPT { return *this; }
|
2010-05-11 19:42:16 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI bool operator()(const _CP& __x, const _CP& __y) const {
|
2018-06-04 20:38:23 +00:00
|
|
|
return static_cast<const _Compare&>(*this)(__x.__get_value().first, __y.__get_value().first);
|
|
|
|
}
|
2010-05-11 19:42:16 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI bool operator()(const _CP& __x, const _Key& __y) const {
|
2018-06-04 20:38:23 +00:00
|
|
|
return static_cast<const _Compare&>(*this)(__x.__get_value().first, __y);
|
|
|
|
}
|
2010-05-11 19:42:16 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI bool operator()(const _Key& __x, const _CP& __y) const {
|
2018-06-04 20:38:23 +00:00
|
|
|
return static_cast<const _Compare&>(*this)(__x, __y.__get_value().first);
|
|
|
|
}
|
2023-01-23 10:27:14 +01:00
|
|
|
_LIBCPP_HIDE_FROM_ABI void swap(__map_value_compare& __y) _NOEXCEPT_(__is_nothrow_swappable<_Compare>::value) {
|
2017-04-13 00:34:24 +00:00
|
|
|
using std::swap;
|
|
|
|
swap(static_cast<_Compare&>(*this), static_cast<_Compare&>(__y));
|
2015-07-13 20:04:56 +00:00
|
|
|
}
|
2013-08-13 22:18:47 +00:00
|
|
|
|
2023-02-14 00:56:09 +01:00
|
|
|
#if _LIBCPP_STD_VER >= 14
|
2013-08-13 22:18:47 +00:00
|
|
|
template <typename _K2>
|
2021-08-31 13:04:29 -04:00
|
|
|
_LIBCPP_HIDE_FROM_ABI bool operator()(const _K2& __x, const _CP& __y) const {
|
|
|
|
return static_cast<const _Compare&>(*this)(__x, __y.__get_value().first);
|
|
|
|
}
|
2023-12-18 14:01:33 -05:00
|
|
|
|
2013-08-13 22:18:47 +00:00
|
|
|
template <typename _K2>
|
2021-08-31 13:04:29 -04:00
|
|
|
_LIBCPP_HIDE_FROM_ABI bool operator()(const _CP& __x, const _K2& __y) const {
|
|
|
|
return static_cast<const _Compare&>(*this)(__x.__get_value().first, __y);
|
|
|
|
}
|
2013-08-13 22:18:47 +00:00
|
|
|
#endif
|
2010-05-11 19:42:16 +00:00
|
|
|
};
|
|
|
|
|
2013-07-05 18:06:00 +00:00
|
|
|
template <class _Key, class _CP, class _Compare>
|
|
|
|
class __map_value_compare<_Key, _CP, _Compare, false> {
|
2022-09-02 16:19:07 +02:00
|
|
|
_Compare __comp_;
|
2010-05-11 19:42:16 +00:00
|
|
|
|
|
|
|
public:
|
2011-06-04 14:31:57 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI __map_value_compare() _NOEXCEPT_(is_nothrow_default_constructible<_Compare>::value)
|
2022-09-02 16:19:07 +02:00
|
|
|
: __comp_() {}
|
2011-06-04 14:31:57 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI __map_value_compare(_Compare __c) _NOEXCEPT_(is_nothrow_copy_constructible<_Compare>::value)
|
2022-09-02 16:19:07 +02:00
|
|
|
: __comp_(__c) {}
|
|
|
|
_LIBCPP_HIDE_FROM_ABI const _Compare& key_comp() const _NOEXCEPT { return __comp_; }
|
2023-12-18 14:01:33 -05:00
|
|
|
|
2010-05-11 19:42:16 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI bool operator()(const _CP& __x, const _CP& __y) const {
|
2022-09-02 16:19:07 +02:00
|
|
|
return __comp_(__x.__get_value().first, __y.__get_value().first);
|
|
|
|
}
|
2010-05-11 19:42:16 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI bool operator()(const _CP& __x, const _Key& __y) const {
|
2022-09-02 16:19:07 +02:00
|
|
|
return __comp_(__x.__get_value().first, __y);
|
|
|
|
}
|
2010-05-11 19:42:16 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI bool operator()(const _Key& __x, const _CP& __y) const {
|
2022-09-02 16:19:07 +02:00
|
|
|
return __comp_(__x, __y.__get_value().first);
|
|
|
|
}
|
2015-07-13 20:04:56 +00:00
|
|
|
void swap(__map_value_compare& __y) _NOEXCEPT_(__is_nothrow_swappable<_Compare>::value) {
|
|
|
|
using std::swap;
|
2022-09-02 16:19:07 +02:00
|
|
|
swap(__comp_, __y.__comp_);
|
2015-07-13 20:04:56 +00:00
|
|
|
}
|
2017-01-05 06:06:18 +00:00
|
|
|
|
2023-02-14 00:56:09 +01:00
|
|
|
#if _LIBCPP_STD_VER >= 14
|
2013-08-13 22:18:47 +00:00
|
|
|
template <typename _K2>
|
2021-08-31 13:04:29 -04:00
|
|
|
_LIBCPP_HIDE_FROM_ABI bool operator()(const _K2& __x, const _CP& __y) const {
|
2022-09-02 16:19:07 +02:00
|
|
|
return __comp_(__x, __y.__get_value().first);
|
|
|
|
}
|
2023-12-18 14:01:33 -05:00
|
|
|
|
2013-08-13 22:18:47 +00:00
|
|
|
template <typename _K2>
|
2021-08-31 13:04:29 -04:00
|
|
|
_LIBCPP_HIDE_FROM_ABI bool operator()(const _CP& __x, const _K2& __y) const {
|
2022-09-02 16:19:07 +02:00
|
|
|
return __comp_(__x.__get_value().first, __y);
|
|
|
|
}
|
2013-08-13 22:18:47 +00:00
|
|
|
#endif
|
2010-05-11 19:42:16 +00:00
|
|
|
};
|
|
|
|
|
2015-07-13 20:04:56 +00:00
|
|
|
template <class _Key, class _CP, class _Compare, bool __b>
|
|
|
|
inline _LIBCPP_HIDE_FROM_ABI void
|
|
|
|
swap(__map_value_compare<_Key, _CP, _Compare, __b>& __x, __map_value_compare<_Key, _CP, _Compare, __b>& __y)
|
|
|
|
_NOEXCEPT_(_NOEXCEPT_(__x.swap(__y))) {
|
|
|
|
__x.swap(__y);
|
|
|
|
}
|
|
|
|
|
2010-05-11 19:42:16 +00:00
|
|
|
template <class _Allocator>
|
|
|
|
class __map_node_destructor {
|
|
|
|
typedef _Allocator allocator_type;
|
|
|
|
typedef allocator_traits<allocator_type> __alloc_traits;
|
2016-02-20 05:28:30 +00:00
|
|
|
|
2010-05-11 19:42:16 +00:00
|
|
|
public:
|
|
|
|
typedef typename __alloc_traits::pointer pointer;
|
|
|
|
|
2016-02-20 05:28:30 +00:00
|
|
|
private:
|
2010-05-11 19:42:16 +00:00
|
|
|
allocator_type& __na_;
|
|
|
|
|
|
|
|
__map_node_destructor& operator=(const __map_node_destructor&);
|
|
|
|
|
|
|
|
public:
|
|
|
|
bool __first_constructed;
|
|
|
|
bool __second_constructed;
|
|
|
|
|
2011-06-04 14:31:57 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI explicit __map_node_destructor(allocator_type& __na) _NOEXCEPT
|
2010-05-11 19:42:16 +00:00
|
|
|
: __na_(__na),
|
|
|
|
__first_constructed(false),
|
|
|
|
__second_constructed(false) {}
|
|
|
|
|
2017-04-18 21:08:06 +00:00
|
|
|
#ifndef _LIBCPP_CXX03_LANG
|
2011-06-04 14:31:57 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI __map_node_destructor(__tree_node_destructor<allocator_type>&& __x) _NOEXCEPT
|
2010-05-11 19:42:16 +00:00
|
|
|
: __na_(__x.__na_),
|
|
|
|
__first_constructed(__x.__value_constructed),
|
|
|
|
__second_constructed(__x.__value_constructed) {
|
|
|
|
__x.__value_constructed = false;
|
|
|
|
}
|
2021-04-20 12:03:32 -04:00
|
|
|
#endif // _LIBCPP_CXX03_LANG
|
2010-05-11 19:42:16 +00:00
|
|
|
|
2011-06-04 14:31:57 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI void operator()(pointer __p) _NOEXCEPT {
|
2010-05-11 19:42:16 +00:00
|
|
|
if (__second_constructed)
|
2018-06-04 20:38:23 +00:00
|
|
|
__alloc_traits::destroy(__na_, std::addressof(__p->__value_.__get_value().second));
|
2010-05-11 19:42:16 +00:00
|
|
|
if (__first_constructed)
|
2018-06-04 20:38:23 +00:00
|
|
|
__alloc_traits::destroy(__na_, std::addressof(__p->__value_.__get_value().first));
|
2010-05-11 19:42:16 +00:00
|
|
|
if (__p)
|
|
|
|
__alloc_traits::deallocate(__na_, __p, 1);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2011-06-14 19:58:17 +00:00
|
|
|
template <class _Key, class _Tp, class _Compare, class _Allocator>
|
|
|
|
class map;
|
|
|
|
template <class _Key, class _Tp, class _Compare, class _Allocator>
|
|
|
|
class multimap;
|
|
|
|
template <class _TreeIterator>
|
|
|
|
class __map_const_iterator;
|
2010-05-11 19:42:16 +00:00
|
|
|
|
2016-02-20 05:28:30 +00:00
|
|
|
#ifndef _LIBCPP_CXX03_LANG
|
2013-09-30 19:08:22 +00:00
|
|
|
|
|
|
|
template <class _Key, class _Tp>
|
2021-03-15 14:20:49 -07:00
|
|
|
struct _LIBCPP_STANDALONE_DEBUG __value_type {
|
2013-09-30 19:08:22 +00:00
|
|
|
typedef _Key key_type;
|
|
|
|
typedef _Tp mapped_type;
|
|
|
|
typedef pair<const key_type, mapped_type> value_type;
|
2018-06-04 20:38:23 +00:00
|
|
|
typedef pair<key_type&, mapped_type&> __nc_ref_pair_type;
|
|
|
|
typedef pair<key_type&&, mapped_type&&> __nc_rref_pair_type;
|
2013-09-30 19:08:22 +00:00
|
|
|
|
2018-06-04 20:38:23 +00:00
|
|
|
private:
|
2022-09-02 16:19:07 +02:00
|
|
|
value_type __cc_;
|
2018-06-04 20:38:23 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
_LIBCPP_HIDE_FROM_ABI value_type& __get_value() {
|
2023-02-14 00:56:09 +01:00
|
|
|
# if _LIBCPP_STD_VER >= 17
|
2022-09-02 16:19:07 +02:00
|
|
|
return *std::launder(std::addressof(__cc_));
|
2018-06-04 20:38:23 +00:00
|
|
|
# else
|
2022-09-02 16:19:07 +02:00
|
|
|
return __cc_;
|
2018-06-04 20:38:23 +00:00
|
|
|
# endif
|
|
|
|
}
|
2023-12-18 14:01:33 -05:00
|
|
|
|
2018-06-04 20:38:23 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI const value_type& __get_value() const {
|
2023-02-14 00:56:09 +01:00
|
|
|
# if _LIBCPP_STD_VER >= 17
|
2022-09-02 16:19:07 +02:00
|
|
|
return *std::launder(std::addressof(__cc_));
|
2018-06-04 20:38:23 +00:00
|
|
|
# else
|
2022-09-02 16:19:07 +02:00
|
|
|
return __cc_;
|
2018-06-04 20:38:23 +00:00
|
|
|
# endif
|
|
|
|
}
|
2023-12-18 14:01:33 -05:00
|
|
|
|
2018-06-04 20:38:23 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI __nc_ref_pair_type __ref() {
|
|
|
|
value_type& __v = __get_value();
|
|
|
|
return __nc_ref_pair_type(const_cast<key_type&>(__v.first), __v.second);
|
|
|
|
}
|
2023-12-18 14:01:33 -05:00
|
|
|
|
2018-06-04 20:38:23 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI __nc_rref_pair_type __move() {
|
|
|
|
value_type& __v = __get_value();
|
|
|
|
return __nc_rref_pair_type(std::move(const_cast<key_type&>(__v.first)), std::move(__v.second));
|
|
|
|
}
|
2023-12-18 14:01:33 -05:00
|
|
|
|
2013-09-30 19:08:22 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI __value_type& operator=(const __value_type& __v) {
|
2018-06-04 20:38:23 +00:00
|
|
|
__ref() = __v.__get_value();
|
|
|
|
return *this;
|
|
|
|
}
|
2023-12-18 14:01:33 -05:00
|
|
|
|
2013-09-30 19:08:22 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI __value_type& operator=(__value_type&& __v) {
|
2018-06-04 20:38:23 +00:00
|
|
|
__ref() = __v.__move();
|
|
|
|
return *this;
|
|
|
|
}
|
2023-12-18 14:01:33 -05:00
|
|
|
|
2024-02-20 01:47:38 +01:00
|
|
|
template <class _ValueTp, __enable_if_t<__is_same_uncvref<_ValueTp, value_type>::value, int> = 0>
|
2018-06-04 20:38:23 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI __value_type& operator=(_ValueTp&& __v) {
|
|
|
|
__ref() = std::forward<_ValueTp>(__v);
|
|
|
|
return *this;
|
2016-03-31 02:15:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2021-09-16 22:47:36 -04:00
|
|
|
__value_type() = delete;
|
|
|
|
~__value_type() = delete;
|
|
|
|
__value_type(const __value_type&) = delete;
|
|
|
|
__value_type(__value_type&&) = delete;
|
2013-09-30 19:08:22 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
template <class _Key, class _Tp>
|
|
|
|
struct __value_type {
|
|
|
|
typedef _Key key_type;
|
|
|
|
typedef _Tp mapped_type;
|
|
|
|
typedef pair<const key_type, mapped_type> value_type;
|
|
|
|
|
2018-06-04 20:38:23 +00:00
|
|
|
private:
|
2022-09-02 16:19:07 +02:00
|
|
|
value_type __cc_;
|
2013-09-30 19:08:22 +00:00
|
|
|
|
2018-06-04 20:38:23 +00:00
|
|
|
public:
|
2022-09-02 16:19:07 +02:00
|
|
|
_LIBCPP_HIDE_FROM_ABI value_type& __get_value() { return __cc_; }
|
|
|
|
_LIBCPP_HIDE_FROM_ABI const value_type& __get_value() const { return __cc_; }
|
2018-06-04 20:38:23 +00:00
|
|
|
|
2016-03-31 02:15:15 +00:00
|
|
|
private:
|
|
|
|
__value_type();
|
|
|
|
__value_type(__value_type const&);
|
|
|
|
__value_type& operator=(__value_type const&);
|
|
|
|
~__value_type();
|
2013-09-30 19:08:22 +00:00
|
|
|
};
|
|
|
|
|
2017-04-18 21:08:06 +00:00
|
|
|
#endif // _LIBCPP_CXX03_LANG
|
2013-09-30 19:08:22 +00:00
|
|
|
|
2015-03-03 20:10:01 +00:00
|
|
|
template <class _Tp>
|
|
|
|
struct __extract_key_value_types;
|
|
|
|
|
|
|
|
template <class _Key, class _Tp>
|
|
|
|
struct __extract_key_value_types<__value_type<_Key, _Tp> > {
|
|
|
|
typedef _Key const __key_type;
|
|
|
|
typedef _Tp __mapped_type;
|
|
|
|
};
|
|
|
|
|
2010-05-11 19:42:16 +00:00
|
|
|
template <class _TreeIterator>
|
2017-01-04 23:56:00 +00:00
|
|
|
class _LIBCPP_TEMPLATE_VIS __map_iterator {
|
2016-02-20 05:28:30 +00:00
|
|
|
typedef typename _TreeIterator::_NodeTypes _NodeTypes;
|
|
|
|
typedef typename _TreeIterator::__pointer_traits __pointer_traits;
|
|
|
|
|
2010-05-11 19:42:16 +00:00
|
|
|
_TreeIterator __i_;
|
|
|
|
|
|
|
|
public:
|
|
|
|
typedef bidirectional_iterator_tag iterator_category;
|
2016-02-20 05:28:30 +00:00
|
|
|
typedef typename _NodeTypes::__map_value_type value_type;
|
2010-05-11 19:42:16 +00:00
|
|
|
typedef typename _TreeIterator::difference_type difference_type;
|
|
|
|
typedef value_type& reference;
|
2016-02-20 05:28:30 +00:00
|
|
|
typedef typename _NodeTypes::__map_value_type_pointer pointer;
|
2023-12-18 14:01:33 -05:00
|
|
|
|
2011-06-04 14:31:57 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI __map_iterator() _NOEXCEPT {}
|
2023-12-18 14:01:33 -05:00
|
|
|
|
2011-06-04 14:31:57 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI __map_iterator(_TreeIterator __i) _NOEXCEPT : __i_(__i) {}
|
2023-12-18 14:01:33 -05:00
|
|
|
|
2018-06-04 20:38:23 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI reference operator*() const { return __i_->__get_value(); }
|
|
|
|
_LIBCPP_HIDE_FROM_ABI pointer operator->() const { return pointer_traits<pointer>::pointer_to(__i_->__get_value()); }
|
2023-12-18 14:01:33 -05:00
|
|
|
|
2010-05-11 19:42:16 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI __map_iterator& operator++() {
|
|
|
|
++__i_;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
_LIBCPP_HIDE_FROM_ABI __map_iterator operator++(int) {
|
|
|
|
__map_iterator __t(*this);
|
|
|
|
++(*this);
|
|
|
|
return __t;
|
|
|
|
}
|
2023-12-18 14:01:33 -05:00
|
|
|
|
2010-05-11 19:42:16 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI __map_iterator& operator--() {
|
|
|
|
--__i_;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
_LIBCPP_HIDE_FROM_ABI __map_iterator operator--(int) {
|
|
|
|
__map_iterator __t(*this);
|
|
|
|
--(*this);
|
|
|
|
return __t;
|
|
|
|
}
|
2023-12-18 14:01:33 -05:00
|
|
|
|
2010-09-22 16:48:34 +00:00
|
|
|
friend _LIBCPP_HIDE_FROM_ABI bool operator==(const __map_iterator& __x, const __map_iterator& __y) {
|
2010-05-11 19:42:16 +00:00
|
|
|
return __x.__i_ == __y.__i_;
|
|
|
|
}
|
2010-09-22 16:48:34 +00:00
|
|
|
friend _LIBCPP_HIDE_FROM_ABI bool operator!=(const __map_iterator& __x, const __map_iterator& __y) {
|
2010-05-11 19:42:16 +00:00
|
|
|
return __x.__i_ != __y.__i_;
|
|
|
|
}
|
2023-12-18 14:01:33 -05:00
|
|
|
|
2017-01-04 23:56:00 +00:00
|
|
|
template <class, class, class, class>
|
|
|
|
friend class _LIBCPP_TEMPLATE_VIS map;
|
|
|
|
template <class, class, class, class>
|
|
|
|
friend class _LIBCPP_TEMPLATE_VIS multimap;
|
|
|
|
template <class>
|
|
|
|
friend class _LIBCPP_TEMPLATE_VIS __map_const_iterator;
|
2010-05-11 19:42:16 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
template <class _TreeIterator>
|
2017-01-04 23:56:00 +00:00
|
|
|
class _LIBCPP_TEMPLATE_VIS __map_const_iterator {
|
2016-02-20 05:28:30 +00:00
|
|
|
typedef typename _TreeIterator::_NodeTypes _NodeTypes;
|
|
|
|
typedef typename _TreeIterator::__pointer_traits __pointer_traits;
|
|
|
|
|
2010-05-11 19:42:16 +00:00
|
|
|
_TreeIterator __i_;
|
|
|
|
|
|
|
|
public:
|
|
|
|
typedef bidirectional_iterator_tag iterator_category;
|
2016-02-20 05:28:30 +00:00
|
|
|
typedef typename _NodeTypes::__map_value_type value_type;
|
2010-05-11 19:42:16 +00:00
|
|
|
typedef typename _TreeIterator::difference_type difference_type;
|
|
|
|
typedef const value_type& reference;
|
2016-02-20 05:28:30 +00:00
|
|
|
typedef typename _NodeTypes::__const_map_value_type_pointer pointer;
|
2023-12-18 14:01:33 -05:00
|
|
|
|
2011-06-04 14:31:57 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI __map_const_iterator() _NOEXCEPT {}
|
2023-12-18 14:01:33 -05:00
|
|
|
|
2011-06-04 14:31:57 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI __map_const_iterator(_TreeIterator __i) _NOEXCEPT : __i_(__i) {}
|
2010-09-22 16:48:34 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI
|
2015-03-03 20:10:01 +00:00
|
|
|
__map_const_iterator(__map_iterator< typename _TreeIterator::__non_const_iterator> __i) _NOEXCEPT : __i_(__i.__i_) {}
|
2023-12-18 14:01:33 -05:00
|
|
|
|
2018-06-04 20:38:23 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI reference operator*() const { return __i_->__get_value(); }
|
|
|
|
_LIBCPP_HIDE_FROM_ABI pointer operator->() const { return pointer_traits<pointer>::pointer_to(__i_->__get_value()); }
|
2023-12-18 14:01:33 -05:00
|
|
|
|
2010-05-11 19:42:16 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI __map_const_iterator& operator++() {
|
|
|
|
++__i_;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
_LIBCPP_HIDE_FROM_ABI __map_const_iterator operator++(int) {
|
|
|
|
__map_const_iterator __t(*this);
|
|
|
|
++(*this);
|
|
|
|
return __t;
|
|
|
|
}
|
2023-12-18 14:01:33 -05:00
|
|
|
|
2010-05-11 19:42:16 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI __map_const_iterator& operator--() {
|
|
|
|
--__i_;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
_LIBCPP_HIDE_FROM_ABI __map_const_iterator operator--(int) {
|
|
|
|
__map_const_iterator __t(*this);
|
|
|
|
--(*this);
|
|
|
|
return __t;
|
|
|
|
}
|
2023-12-18 14:01:33 -05:00
|
|
|
|
2010-09-22 16:48:34 +00:00
|
|
|
friend _LIBCPP_HIDE_FROM_ABI bool operator==(const __map_const_iterator& __x, const __map_const_iterator& __y) {
|
2010-05-11 19:42:16 +00:00
|
|
|
return __x.__i_ == __y.__i_;
|
|
|
|
}
|
2010-09-22 16:48:34 +00:00
|
|
|
friend _LIBCPP_HIDE_FROM_ABI bool operator!=(const __map_const_iterator& __x, const __map_const_iterator& __y) {
|
2010-05-11 19:42:16 +00:00
|
|
|
return __x.__i_ != __y.__i_;
|
|
|
|
}
|
2023-12-18 14:01:33 -05:00
|
|
|
|
2017-01-04 23:56:00 +00:00
|
|
|
template <class, class, class, class>
|
|
|
|
friend class _LIBCPP_TEMPLATE_VIS map;
|
|
|
|
template <class, class, class, class>
|
|
|
|
friend class _LIBCPP_TEMPLATE_VIS multimap;
|
|
|
|
template <class, class, class>
|
|
|
|
friend class _LIBCPP_TEMPLATE_VIS __tree_const_iterator;
|
2010-05-11 19:42:16 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
template <class _Key, class _Tp, class _Compare = less<_Key>, class _Allocator = allocator<pair<const _Key, _Tp> > >
|
2017-01-04 23:56:00 +00:00
|
|
|
class _LIBCPP_TEMPLATE_VIS map {
|
2010-05-11 19:42:16 +00:00
|
|
|
public:
|
|
|
|
// types:
|
|
|
|
typedef _Key key_type;
|
|
|
|
typedef _Tp mapped_type;
|
|
|
|
typedef pair<const key_type, mapped_type> value_type;
|
2022-03-18 17:49:02 +01:00
|
|
|
typedef __type_identity_t<_Compare> key_compare;
|
|
|
|
typedef __type_identity_t<_Allocator> allocator_type;
|
2010-05-11 19:42:16 +00:00
|
|
|
typedef value_type& reference;
|
|
|
|
typedef const value_type& const_reference;
|
|
|
|
|
2015-11-26 01:24:04 +00:00
|
|
|
static_assert((is_same<typename allocator_type::value_type, value_type>::value),
|
|
|
|
"Allocator::value_type must be same type as value_type");
|
|
|
|
|
2022-06-22 10:11:14 +02:00
|
|
|
class _LIBCPP_TEMPLATE_VIS value_compare : public __binary_function<value_type, value_type, bool> {
|
2010-05-11 19:42:16 +00:00
|
|
|
friend class map;
|
|
|
|
|
2022-07-08 18:17:26 +02:00
|
|
|
protected:
|
|
|
|
key_compare comp;
|
2010-05-11 19:42:16 +00:00
|
|
|
|
|
|
|
_LIBCPP_HIDE_FROM_ABI value_compare(key_compare __c) : comp(__c) {}
|
2013-06-19 21:29:40 +00:00
|
|
|
|
2023-12-18 14:01:33 -05:00
|
|
|
public:
|
2013-07-05 18:06:00 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI bool operator()(const value_type& __x, const value_type& __y) const {
|
2010-05-11 19:42:16 +00:00
|
|
|
return comp(__x.first, __y.first);
|
2023-12-18 14:01:33 -05:00
|
|
|
}
|
2010-05-11 19:42:16 +00:00
|
|
|
};
|
|
|
|
|
2023-12-18 14:01:33 -05:00
|
|
|
private:
|
2022-10-08 22:17:32 +02:00
|
|
|
typedef std::__value_type<key_type, mapped_type> __value_type;
|
|
|
|
typedef __map_value_compare<key_type, __value_type, key_compare> __vc;
|
|
|
|
typedef __rebind_alloc<allocator_traits<allocator_type>, __value_type> __allocator_type;
|
|
|
|
typedef __tree<__value_type, __vc, __allocator_type> __base;
|
|
|
|
typedef typename __base::__node_traits __node_traits;
|
|
|
|
typedef allocator_traits<allocator_type> __alloc_traits;
|
|
|
|
|
|
|
|
static_assert(is_same<allocator_type, __rebind_alloc<__alloc_traits, value_type> >::value,
|
|
|
|
"[allocator.requirements] states that rebinding an allocator to the same type should result in the "
|
|
|
|
"original allocator");
|
2023-12-18 14:01:33 -05:00
|
|
|
|
2010-05-11 19:42:16 +00:00
|
|
|
__base __tree_;
|
|
|
|
|
|
|
|
public:
|
|
|
|
typedef typename __alloc_traits::pointer pointer;
|
|
|
|
typedef typename __alloc_traits::const_pointer const_pointer;
|
|
|
|
typedef typename __alloc_traits::size_type size_type;
|
|
|
|
typedef typename __alloc_traits::difference_type difference_type;
|
2015-03-03 20:10:01 +00:00
|
|
|
typedef __map_iterator<typename __base::iterator> iterator;
|
2010-05-11 19:42:16 +00:00
|
|
|
typedef __map_const_iterator<typename __base::const_iterator> const_iterator;
|
2011-06-30 21:18:19 +00:00
|
|
|
typedef std::reverse_iterator<iterator> reverse_iterator;
|
|
|
|
typedef std::reverse_iterator<const_iterator> const_reverse_iterator;
|
2010-05-11 19:42:16 +00:00
|
|
|
|
2023-02-14 00:56:09 +01:00
|
|
|
#if _LIBCPP_STD_VER >= 17
|
2018-08-01 01:33:38 +00:00
|
|
|
typedef __map_node_handle<typename __base::__node, allocator_type> node_type;
|
|
|
|
typedef __insert_return_type<iterator, node_type> insert_return_type;
|
|
|
|
#endif
|
|
|
|
|
2018-10-31 17:31:35 +00:00
|
|
|
template <class _Key2, class _Value2, class _Comp2, class _Alloc2>
|
|
|
|
friend class _LIBCPP_TEMPLATE_VIS map;
|
|
|
|
template <class _Key2, class _Value2, class _Comp2, class _Alloc2>
|
|
|
|
friend class _LIBCPP_TEMPLATE_VIS multimap;
|
|
|
|
|
2010-09-22 16:48:34 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI map() _NOEXCEPT_(
|
2014-03-10 04:50:10 +00:00
|
|
|
is_nothrow_default_constructible<allocator_type>::value&& is_nothrow_default_constructible<key_compare>::value&&
|
|
|
|
is_nothrow_copy_constructible<key_compare>::value)
|
|
|
|
: __tree_(__vc(key_compare())) {}
|
|
|
|
|
|
|
|
_LIBCPP_HIDE_FROM_ABI explicit map(const key_compare& __comp) _NOEXCEPT_(
|
2011-06-04 14:31:57 +00:00
|
|
|
is_nothrow_default_constructible<allocator_type>::value&& is_nothrow_copy_constructible<key_compare>::value)
|
2010-05-11 19:42:16 +00:00
|
|
|
: __tree_(__vc(__comp)) {}
|
2023-12-18 14:01:33 -05:00
|
|
|
|
2010-05-11 19:42:16 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI explicit map(const key_compare& __comp, const allocator_type& __a)
|
2016-08-17 05:58:40 +00:00
|
|
|
: __tree_(__vc(__comp), typename __base::allocator_type(__a)) {}
|
2023-12-18 14:01:33 -05:00
|
|
|
|
2010-05-11 19:42:16 +00:00
|
|
|
template <class _InputIterator>
|
|
|
|
_LIBCPP_HIDE_FROM_ABI map(_InputIterator __f, _InputIterator __l, const key_compare& __comp = key_compare())
|
|
|
|
: __tree_(__vc(__comp)) {
|
|
|
|
insert(__f, __l);
|
|
|
|
}
|
2023-12-18 14:01:33 -05:00
|
|
|
|
2010-05-11 19:42:16 +00:00
|
|
|
template <class _InputIterator>
|
2010-09-22 16:48:34 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI
|
2010-05-11 19:42:16 +00:00
|
|
|
map(_InputIterator __f, _InputIterator __l, const key_compare& __comp, const allocator_type& __a)
|
2016-08-17 05:58:40 +00:00
|
|
|
: __tree_(__vc(__comp), typename __base::allocator_type(__a)) {
|
2010-05-11 19:42:16 +00:00
|
|
|
insert(__f, __l);
|
|
|
|
}
|
|
|
|
|
2023-07-10 17:16:56 -07:00
|
|
|
#if _LIBCPP_STD_VER >= 23
|
|
|
|
template <_ContainerCompatibleRange<value_type> _Range>
|
|
|
|
_LIBCPP_HIDE_FROM_ABI
|
|
|
|
map(from_range_t,
|
|
|
|
_Range&& __range,
|
|
|
|
const key_compare& __comp = key_compare(),
|
|
|
|
const allocator_type& __a = allocator_type())
|
|
|
|
: __tree_(__vc(__comp), typename __base::allocator_type(__a)) {
|
|
|
|
insert_range(std::forward<_Range>(__range));
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2023-02-14 00:56:09 +01:00
|
|
|
#if _LIBCPP_STD_VER >= 14
|
2013-09-11 01:15:47 +00:00
|
|
|
template <class _InputIterator>
|
|
|
|
_LIBCPP_HIDE_FROM_ABI map(_InputIterator __f, _InputIterator __l, const allocator_type& __a)
|
|
|
|
: map(__f, __l, key_compare(), __a) {}
|
|
|
|
#endif
|
|
|
|
|
2023-07-10 17:16:56 -07:00
|
|
|
#if _LIBCPP_STD_VER >= 23
|
|
|
|
template <_ContainerCompatibleRange<value_type> _Range>
|
|
|
|
_LIBCPP_HIDE_FROM_ABI map(from_range_t, _Range&& __range, const allocator_type& __a)
|
|
|
|
: map(from_range, std::forward<_Range>(__range), key_compare(), __a) {}
|
|
|
|
#endif
|
|
|
|
|
2010-05-11 19:42:16 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI map(const map& __m) : __tree_(__m.__tree_) { insert(__m.begin(), __m.end()); }
|
|
|
|
|
2011-07-01 19:24:36 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI map& operator=(const map& __m) {
|
2016-07-18 13:19:00 +00:00
|
|
|
#ifndef _LIBCPP_CXX03_LANG
|
2011-07-01 19:24:36 +00:00
|
|
|
__tree_ = __m.__tree_;
|
2013-06-19 21:29:40 +00:00
|
|
|
#else
|
2021-09-28 19:15:18 +02:00
|
|
|
if (this != std::addressof(__m)) {
|
2014-02-08 04:03:14 +00:00
|
|
|
__tree_.clear();
|
|
|
|
__tree_.value_comp() = __m.__tree_.value_comp();
|
|
|
|
__tree_.__copy_assign_alloc(__m.__tree_);
|
|
|
|
insert(__m.begin(), __m.end());
|
|
|
|
}
|
2013-06-19 21:29:40 +00:00
|
|
|
#endif
|
2011-07-01 19:24:36 +00:00
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2017-04-18 21:08:06 +00:00
|
|
|
#ifndef _LIBCPP_CXX03_LANG
|
2010-05-11 19:42:16 +00:00
|
|
|
|
2011-06-04 14:31:57 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI map(map&& __m) _NOEXCEPT_(is_nothrow_move_constructible<__base>::value)
|
2011-08-12 21:56:02 +00:00
|
|
|
: __tree_(std::move(__m.__tree_)) {}
|
2010-05-11 19:42:16 +00:00
|
|
|
|
2023-01-23 10:27:14 +01:00
|
|
|
_LIBCPP_HIDE_FROM_ABI map(map&& __m, const allocator_type& __a);
|
2023-12-18 14:01:33 -05:00
|
|
|
|
2011-08-12 21:56:02 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI map& operator=(map&& __m) _NOEXCEPT_(is_nothrow_move_assignable<__base>::value) {
|
|
|
|
__tree_ = std::move(__m.__tree_);
|
|
|
|
return *this;
|
2023-12-18 14:01:33 -05:00
|
|
|
}
|
|
|
|
|
2010-05-11 19:42:16 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI map(initializer_list<value_type> __il, const key_compare& __comp = key_compare())
|
2023-07-10 17:16:56 -07:00
|
|
|
: __tree_(__vc(__comp)) {
|
2010-05-11 19:42:16 +00:00
|
|
|
insert(__il.begin(), __il.end());
|
2023-12-18 14:01:33 -05:00
|
|
|
}
|
|
|
|
|
2010-05-11 19:42:16 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI map(initializer_list<value_type> __il, const key_compare& __comp, const allocator_type& __a)
|
2023-07-10 17:16:56 -07:00
|
|
|
: __tree_(__vc(__comp), typename __base::allocator_type(__a)) {
|
2010-05-11 19:42:16 +00:00
|
|
|
insert(__il.begin(), __il.end());
|
2023-12-18 14:01:33 -05:00
|
|
|
}
|
|
|
|
|
2023-02-14 00:56:09 +01:00
|
|
|
# if _LIBCPP_STD_VER >= 14
|
2013-09-11 01:15:47 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI map(initializer_list<value_type> __il, const allocator_type& __a)
|
|
|
|
: map(__il, key_compare(), __a) {}
|
|
|
|
# endif
|
|
|
|
|
2010-05-11 19:42:16 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI map& operator=(initializer_list<value_type> __il) {
|
|
|
|
__tree_.__assign_unique(__il.begin(), __il.end());
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2021-04-20 12:03:32 -04:00
|
|
|
#endif // _LIBCPP_CXX03_LANG
|
2010-05-11 19:42:16 +00:00
|
|
|
|
2016-08-17 05:58:40 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI explicit map(const allocator_type& __a) : __tree_(typename __base::allocator_type(__a)) {}
|
[libc++] Make sure we don't eagerly diagnose non-const comparators for containers of incomplete types
Summary:
In r348529, I improved the library-defined diagnostic for using containers
with a non-const comparator/hasher. However, the check is now performed
too early, which leads to the diagnostic being emitted in cases where it
shouldn't. See PR41360 for details.
This patch moves the diagnostic to the destructor of the containers, which
means that the diagnostic will only be emitted when the container is instantiated
at a point where the comparator and the key/value are required to be complete.
We still retain better diagnostics than before r348529, because the diagnostics
are performed in the containers themselves instead of __tree and __hash_table.
As a drive-by fix, I improved the diagnostic to mention that we can't find
a _viable_ const call operator, as suggested by EricWF in PR41360.
Reviewers: EricWF, mclow.lists
Subscribers: christof, jkorous, dexonsmith, libcxx-commits, zoecarver
Tags: #libc
Differential Revision: https://reviews.llvm.org/D60540
llvm-svn: 358189
2019-04-11 16:14:56 +00:00
|
|
|
|
2010-09-22 16:48:34 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI map(const map& __m, const allocator_type& __a)
|
2011-06-04 14:31:57 +00:00
|
|
|
: __tree_(__m.__tree_.value_comp(), typename __base::allocator_type(__a)) {
|
|
|
|
insert(__m.begin(), __m.end());
|
|
|
|
}
|
2023-12-18 14:01:33 -05:00
|
|
|
|
2011-06-04 14:31:57 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI ~map() { static_assert(sizeof(__diagnose_non_const_comparator<_Key, _Compare>()), ""); }
|
2023-12-18 14:01:33 -05:00
|
|
|
|
2011-06-04 14:31:57 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI iterator begin() _NOEXCEPT { return __tree_.begin(); }
|
|
|
|
_LIBCPP_HIDE_FROM_ABI const_iterator begin() const _NOEXCEPT { return __tree_.begin(); }
|
2010-09-22 16:48:34 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI iterator end() _NOEXCEPT { return __tree_.end(); }
|
2011-06-04 14:31:57 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI const_iterator end() const _NOEXCEPT { return __tree_.end(); }
|
2023-12-18 14:01:33 -05:00
|
|
|
|
2010-09-22 16:48:34 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI reverse_iterator rbegin() _NOEXCEPT { return reverse_iterator(end()); }
|
2011-06-04 14:31:57 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI const_reverse_iterator rbegin() const _NOEXCEPT { return const_reverse_iterator(end()); }
|
|
|
|
_LIBCPP_HIDE_FROM_ABI reverse_iterator rend() _NOEXCEPT { return reverse_iterator(begin()); }
|
2023-01-23 10:27:14 +01:00
|
|
|
_LIBCPP_HIDE_FROM_ABI const_reverse_iterator rend() const _NOEXCEPT { return const_reverse_iterator(begin()); }
|
2010-05-11 19:42:16 +00:00
|
|
|
|
2023-01-23 10:27:14 +01:00
|
|
|
_LIBCPP_HIDE_FROM_ABI const_iterator cbegin() const _NOEXCEPT { return begin(); }
|
|
|
|
_LIBCPP_HIDE_FROM_ABI const_iterator cend() const _NOEXCEPT { return end(); }
|
|
|
|
_LIBCPP_HIDE_FROM_ABI const_reverse_iterator crbegin() const _NOEXCEPT { return rbegin(); }
|
2011-06-04 14:31:57 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI const_reverse_iterator crend() const _NOEXCEPT { return rend(); }
|
2010-05-11 19:42:16 +00:00
|
|
|
|
2010-09-22 16:48:34 +00:00
|
|
|
_LIBCPP_NODISCARD_AFTER_CXX17 _LIBCPP_HIDE_FROM_ABI bool empty() const _NOEXCEPT { return __tree_.size() == 0; }
|
2016-08-17 05:58:40 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI size_type size() const _NOEXCEPT { return __tree_.size(); }
|
2010-05-11 19:42:16 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI size_type max_size() const _NOEXCEPT { return __tree_.max_size(); }
|
|
|
|
|
2023-01-23 10:27:14 +01:00
|
|
|
_LIBCPP_HIDE_FROM_ABI mapped_type& operator[](const key_type& __k);
|
2016-03-31 02:15:15 +00:00
|
|
|
#ifndef _LIBCPP_CXX03_LANG
|
|
|
|
_LIBCPP_HIDE_FROM_ABI mapped_type& operator[](key_type&& __k);
|
2023-12-18 14:01:33 -05:00
|
|
|
#endif
|
2010-09-04 23:28:19 +00:00
|
|
|
|
2016-03-31 02:15:15 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI mapped_type& at(const key_type& __k);
|
|
|
|
_LIBCPP_HIDE_FROM_ABI const mapped_type& at(const key_type& __k) const;
|
2010-09-04 23:28:19 +00:00
|
|
|
|
2011-11-29 18:15:50 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI allocator_type get_allocator() const _NOEXCEPT { return allocator_type(__tree_.__alloc()); }
|
2010-05-11 19:42:16 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI key_compare key_comp() const { return __tree_.value_comp().key_comp(); }
|
2011-11-29 18:15:50 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI value_compare value_comp() const { return value_compare(__tree_.value_comp().key_comp()); }
|
2010-05-11 19:42:16 +00:00
|
|
|
|
2011-11-29 18:15:50 +00:00
|
|
|
#ifndef _LIBCPP_CXX03_LANG
|
|
|
|
template <class... _Args>
|
2016-03-31 02:15:15 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI pair<iterator, bool> emplace(_Args&&... __args) {
|
|
|
|
return __tree_.__emplace_unique(std::forward<_Args>(__args)...);
|
2023-12-18 14:01:33 -05:00
|
|
|
}
|
|
|
|
|
2015-07-07 03:37:33 +00:00
|
|
|
template <class... _Args>
|
2011-11-29 18:15:50 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI iterator emplace_hint(const_iterator __p, _Args&&... __args) {
|
2016-03-31 02:15:15 +00:00
|
|
|
return __tree_.__emplace_hint_unique(__p.__i_, std::forward<_Args>(__args)...);
|
2023-12-18 14:01:33 -05:00
|
|
|
}
|
|
|
|
|
2024-02-20 01:47:38 +01:00
|
|
|
template <class _Pp, __enable_if_t<is_constructible<value_type, _Pp>::value, int> = 0>
|
2010-09-22 16:48:34 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI pair<iterator, bool> insert(_Pp&& __p) {
|
2011-11-29 18:15:50 +00:00
|
|
|
return __tree_.__insert_unique(std::forward<_Pp>(__p));
|
2023-12-18 14:01:33 -05:00
|
|
|
}
|
|
|
|
|
2024-02-20 01:47:38 +01:00
|
|
|
template <class _Pp, __enable_if_t<is_constructible<value_type, _Pp>::value, int> = 0>
|
2011-11-29 18:15:50 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI iterator insert(const_iterator __pos, _Pp&& __p) {
|
|
|
|
return __tree_.__insert_unique(__pos.__i_, std::forward<_Pp>(__p));
|
|
|
|
}
|
2010-05-11 19:42:16 +00:00
|
|
|
|
2021-04-20 12:03:32 -04:00
|
|
|
#endif // _LIBCPP_CXX03_LANG
|
2010-05-11 19:42:16 +00:00
|
|
|
|
|
|
|
_LIBCPP_HIDE_FROM_ABI pair<iterator, bool> insert(const value_type& __v) { return __tree_.__insert_unique(__v); }
|
|
|
|
|
|
|
|
_LIBCPP_HIDE_FROM_ABI iterator insert(const_iterator __p, const value_type& __v) {
|
|
|
|
return __tree_.__insert_unique(__p.__i_, __v);
|
|
|
|
}
|
|
|
|
|
2016-04-18 01:40:45 +00:00
|
|
|
#ifndef _LIBCPP_CXX03_LANG
|
2016-03-31 02:15:15 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI pair<iterator, bool> insert(value_type&& __v) {
|
|
|
|
return __tree_.__insert_unique(std::move(__v));
|
|
|
|
}
|
2016-01-05 19:32:41 +00:00
|
|
|
|
2016-03-31 02:15:15 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI iterator insert(const_iterator __p, value_type&& __v) {
|
|
|
|
return __tree_.__insert_unique(__p.__i_, std::move(__v));
|
|
|
|
}
|
2017-04-18 21:08:06 +00:00
|
|
|
|
|
|
|
_LIBCPP_HIDE_FROM_ABI void insert(initializer_list<value_type> __il) { insert(__il.begin(), __il.end()); }
|
2016-01-05 19:32:41 +00:00
|
|
|
#endif
|
|
|
|
|
2010-05-11 19:42:16 +00:00
|
|
|
template <class _InputIterator>
|
|
|
|
_LIBCPP_HIDE_FROM_ABI void insert(_InputIterator __f, _InputIterator __l) {
|
|
|
|
for (const_iterator __e = cend(); __f != __l; ++__f)
|
|
|
|
insert(__e.__i_, *__f);
|
|
|
|
}
|
|
|
|
|
2023-07-10 17:16:56 -07:00
|
|
|
#if _LIBCPP_STD_VER >= 23
|
|
|
|
template <_ContainerCompatibleRange<value_type> _Range>
|
|
|
|
_LIBCPP_HIDE_FROM_ABI void insert_range(_Range&& __range) {
|
|
|
|
const_iterator __end = cend();
|
|
|
|
for (auto&& __element : __range) {
|
|
|
|
insert(__end.__i_, std::forward<decltype(__element)>(__element));
|
|
|
|
}
|
2023-12-18 14:01:33 -05:00
|
|
|
}
|
2023-07-10 17:16:56 -07:00
|
|
|
#endif
|
|
|
|
|
2023-02-14 00:56:09 +01:00
|
|
|
#if _LIBCPP_STD_VER >= 17
|
2016-03-31 03:13:37 +00:00
|
|
|
|
2015-07-07 03:37:33 +00:00
|
|
|
template <class... _Args>
|
|
|
|
_LIBCPP_HIDE_FROM_ABI pair<iterator, bool> try_emplace(const key_type& __k, _Args&&... __args) {
|
2016-03-31 03:13:37 +00:00
|
|
|
return __tree_.__emplace_unique_key_args(
|
|
|
|
__k,
|
|
|
|
std::piecewise_construct,
|
|
|
|
std::forward_as_tuple(__k),
|
|
|
|
std::forward_as_tuple(std::forward<_Args>(__args)...));
|
2015-07-07 03:37:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
template <class... _Args>
|
|
|
|
_LIBCPP_HIDE_FROM_ABI pair<iterator, bool> try_emplace(key_type&& __k, _Args&&... __args) {
|
2016-03-31 03:13:37 +00:00
|
|
|
return __tree_.__emplace_unique_key_args(
|
2023-12-18 14:01:33 -05:00
|
|
|
__k,
|
2016-03-31 03:13:37 +00:00
|
|
|
std::piecewise_construct,
|
|
|
|
std::forward_as_tuple(std::move(__k)),
|
|
|
|
std::forward_as_tuple(std::forward<_Args>(__args)...));
|
2023-12-18 14:01:33 -05:00
|
|
|
}
|
|
|
|
|
2015-07-07 03:37:33 +00:00
|
|
|
template <class... _Args>
|
|
|
|
_LIBCPP_HIDE_FROM_ABI iterator try_emplace(const_iterator __h, const key_type& __k, _Args&&... __args) {
|
2016-03-31 03:13:37 +00:00
|
|
|
return __tree_
|
|
|
|
.__emplace_hint_unique_key_args(
|
|
|
|
__h.__i_,
|
|
|
|
__k,
|
|
|
|
std::piecewise_construct,
|
|
|
|
std::forward_as_tuple(__k),
|
2020-09-19 15:39:09 +02:00
|
|
|
std::forward_as_tuple(std::forward<_Args>(__args)...))
|
|
|
|
.first;
|
2015-07-07 03:37:33 +00:00
|
|
|
}
|
2023-12-18 14:01:33 -05:00
|
|
|
|
2015-07-07 03:37:33 +00:00
|
|
|
template <class... _Args>
|
|
|
|
_LIBCPP_HIDE_FROM_ABI iterator try_emplace(const_iterator __h, key_type&& __k, _Args&&... __args) {
|
2016-03-31 03:13:37 +00:00
|
|
|
return __tree_
|
|
|
|
.__emplace_hint_unique_key_args(
|
|
|
|
__h.__i_,
|
|
|
|
__k,
|
|
|
|
std::piecewise_construct,
|
|
|
|
std::forward_as_tuple(std::move(__k)),
|
2020-09-19 15:39:09 +02:00
|
|
|
std::forward_as_tuple(std::forward<_Args>(__args)...))
|
|
|
|
.first;
|
2015-07-07 03:37:33 +00:00
|
|
|
}
|
2023-12-18 14:01:33 -05:00
|
|
|
|
2015-07-07 03:37:33 +00:00
|
|
|
template <class _Vp>
|
|
|
|
_LIBCPP_HIDE_FROM_ABI pair<iterator, bool> insert_or_assign(const key_type& __k, _Vp&& __v) {
|
|
|
|
iterator __p = lower_bound(__k);
|
|
|
|
if (__p != end() && !key_comp()(__k, __p->first)) {
|
|
|
|
__p->second = std::forward<_Vp>(__v);
|
|
|
|
return std::make_pair(__p, false);
|
|
|
|
}
|
|
|
|
return std::make_pair(emplace_hint(__p, __k, std::forward<_Vp>(__v)), true);
|
2023-12-18 14:01:33 -05:00
|
|
|
}
|
|
|
|
|
2015-07-07 03:37:33 +00:00
|
|
|
template <class _Vp>
|
|
|
|
_LIBCPP_HIDE_FROM_ABI pair<iterator, bool> insert_or_assign(key_type&& __k, _Vp&& __v) {
|
|
|
|
iterator __p = lower_bound(__k);
|
|
|
|
if (__p != end() && !key_comp()(__k, __p->first)) {
|
|
|
|
__p->second = std::forward<_Vp>(__v);
|
|
|
|
return std::make_pair(__p, false);
|
|
|
|
}
|
|
|
|
return std::make_pair(emplace_hint(__p, std::move(__k), std::forward<_Vp>(__v)), true);
|
2023-12-18 14:01:33 -05:00
|
|
|
}
|
2015-07-07 03:37:33 +00:00
|
|
|
|
|
|
|
template <class _Vp>
|
2020-09-19 15:39:09 +02:00
|
|
|
_LIBCPP_HIDE_FROM_ABI iterator insert_or_assign(const_iterator __h, const key_type& __k, _Vp&& __v) {
|
|
|
|
auto [__r, __inserted] = __tree_.__emplace_hint_unique_key_args(__h.__i_, __k, __k, std::forward<_Vp>(__v));
|
|
|
|
|
|
|
|
if (!__inserted)
|
|
|
|
__r->__get_value().second = std::forward<_Vp>(__v);
|
|
|
|
|
|
|
|
return __r;
|
|
|
|
}
|
2015-07-07 03:37:33 +00:00
|
|
|
|
|
|
|
template <class _Vp>
|
2020-09-19 15:39:09 +02:00
|
|
|
_LIBCPP_HIDE_FROM_ABI iterator insert_or_assign(const_iterator __h, key_type&& __k, _Vp&& __v) {
|
|
|
|
auto [__r, __inserted] =
|
|
|
|
__tree_.__emplace_hint_unique_key_args(__h.__i_, __k, std::move(__k), std::forward<_Vp>(__v));
|
|
|
|
|
|
|
|
if (!__inserted)
|
|
|
|
__r->__get_value().second = std::forward<_Vp>(__v);
|
|
|
|
|
|
|
|
return __r;
|
|
|
|
}
|
2016-03-31 03:13:37 +00:00
|
|
|
|
2023-02-14 00:56:09 +01:00
|
|
|
#endif // _LIBCPP_STD_VER >= 17
|
2015-07-07 03:37:33 +00:00
|
|
|
|
2010-05-11 19:42:16 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI iterator erase(const_iterator __p) { return __tree_.erase(__p.__i_); }
|
2015-05-10 13:35:00 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI iterator erase(iterator __p) { return __tree_.erase(__p.__i_); }
|
2010-05-11 19:42:16 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI size_type erase(const key_type& __k) { return __tree_.__erase_unique(__k); }
|
|
|
|
_LIBCPP_HIDE_FROM_ABI iterator erase(const_iterator __f, const_iterator __l) {
|
|
|
|
return __tree_.erase(__f.__i_, __l.__i_);
|
|
|
|
}
|
2011-06-04 14:31:57 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI void clear() _NOEXCEPT { __tree_.clear(); }
|
2010-05-11 19:42:16 +00:00
|
|
|
|
2023-02-14 00:56:09 +01:00
|
|
|
#if _LIBCPP_STD_VER >= 17
|
2018-08-01 01:33:38 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI insert_return_type insert(node_type&& __nh) {
|
2023-07-20 10:13:54 -07:00
|
|
|
_LIBCPP_ASSERT_COMPATIBLE_ALLOCATOR(__nh.empty() || __nh.get_allocator() == get_allocator(),
|
2018-08-01 01:33:38 +00:00
|
|
|
"node_type with incompatible allocator passed to map::insert()");
|
|
|
|
return __tree_.template __node_handle_insert_unique< node_type, insert_return_type>(std::move(__nh));
|
|
|
|
}
|
|
|
|
_LIBCPP_HIDE_FROM_ABI iterator insert(const_iterator __hint, node_type&& __nh) {
|
2023-07-20 10:13:54 -07:00
|
|
|
_LIBCPP_ASSERT_COMPATIBLE_ALLOCATOR(__nh.empty() || __nh.get_allocator() == get_allocator(),
|
2018-08-01 01:33:38 +00:00
|
|
|
"node_type with incompatible allocator passed to map::insert()");
|
|
|
|
return __tree_.template __node_handle_insert_unique<node_type>(__hint.__i_, std::move(__nh));
|
|
|
|
}
|
|
|
|
_LIBCPP_HIDE_FROM_ABI node_type extract(key_type const& __key) {
|
|
|
|
return __tree_.template __node_handle_extract<node_type>(__key);
|
|
|
|
}
|
|
|
|
_LIBCPP_HIDE_FROM_ABI node_type extract(const_iterator __it) {
|
|
|
|
return __tree_.template __node_handle_extract<node_type>(__it.__i_);
|
|
|
|
}
|
2018-11-01 14:41:37 +00:00
|
|
|
template <class _Compare2>
|
|
|
|
_LIBCPP_HIDE_FROM_ABI void merge(map<key_type, mapped_type, _Compare2, allocator_type>& __source) {
|
2023-07-20 10:13:54 -07:00
|
|
|
_LIBCPP_ASSERT_COMPATIBLE_ALLOCATOR(
|
|
|
|
__source.get_allocator() == get_allocator(), "merging container with incompatible allocator");
|
2018-10-31 17:31:35 +00:00
|
|
|
__tree_.__node_handle_merge_unique(__source.__tree_);
|
|
|
|
}
|
2018-11-01 14:41:37 +00:00
|
|
|
template <class _Compare2>
|
|
|
|
_LIBCPP_HIDE_FROM_ABI void merge(map<key_type, mapped_type, _Compare2, allocator_type>&& __source) {
|
2023-07-20 10:13:54 -07:00
|
|
|
_LIBCPP_ASSERT_COMPATIBLE_ALLOCATOR(
|
|
|
|
__source.get_allocator() == get_allocator(), "merging container with incompatible allocator");
|
2018-10-31 17:31:35 +00:00
|
|
|
__tree_.__node_handle_merge_unique(__source.__tree_);
|
|
|
|
}
|
2018-11-01 14:41:37 +00:00
|
|
|
template <class _Compare2>
|
|
|
|
_LIBCPP_HIDE_FROM_ABI void merge(multimap<key_type, mapped_type, _Compare2, allocator_type>& __source) {
|
2023-07-20 10:13:54 -07:00
|
|
|
_LIBCPP_ASSERT_COMPATIBLE_ALLOCATOR(
|
|
|
|
__source.get_allocator() == get_allocator(), "merging container with incompatible allocator");
|
2018-10-31 17:31:35 +00:00
|
|
|
__tree_.__node_handle_merge_unique(__source.__tree_);
|
|
|
|
}
|
2018-11-01 14:41:37 +00:00
|
|
|
template <class _Compare2>
|
|
|
|
_LIBCPP_HIDE_FROM_ABI void merge(multimap<key_type, mapped_type, _Compare2, allocator_type>&& __source) {
|
2023-07-20 10:13:54 -07:00
|
|
|
_LIBCPP_ASSERT_COMPATIBLE_ALLOCATOR(
|
|
|
|
__source.get_allocator() == get_allocator(), "merging container with incompatible allocator");
|
2018-10-31 17:31:35 +00:00
|
|
|
__tree_.__node_handle_merge_unique(__source.__tree_);
|
|
|
|
}
|
2018-08-01 01:33:38 +00:00
|
|
|
#endif
|
|
|
|
|
2011-06-04 14:31:57 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI void swap(map& __m) _NOEXCEPT_(__is_nothrow_swappable<__base>::value) {
|
|
|
|
__tree_.swap(__m.__tree_);
|
|
|
|
}
|
2010-05-11 19:42:16 +00:00
|
|
|
|
|
|
|
_LIBCPP_HIDE_FROM_ABI iterator find(const key_type& __k) { return __tree_.find(__k); }
|
|
|
|
_LIBCPP_HIDE_FROM_ABI const_iterator find(const key_type& __k) const { return __tree_.find(__k); }
|
2023-02-14 00:56:09 +01:00
|
|
|
#if _LIBCPP_STD_VER >= 14
|
2023-09-01 17:52:02 -07:00
|
|
|
template <typename _K2, enable_if_t<__is_transparent<_Compare, _K2>::value, int> = 0>
|
2013-08-13 22:18:47 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI iterator find(const _K2& __k) {
|
|
|
|
return __tree_.find(__k);
|
|
|
|
}
|
2023-09-01 17:52:02 -07:00
|
|
|
template <typename _K2, enable_if_t<__is_transparent<_Compare, _K2>::value, int> = 0>
|
2013-08-13 22:18:47 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI const_iterator find(const _K2& __k) const {
|
|
|
|
return __tree_.find(__k);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2010-05-11 19:42:16 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI size_type count(const key_type& __k) const { return __tree_.__count_unique(__k); }
|
2023-02-14 00:56:09 +01:00
|
|
|
#if _LIBCPP_STD_VER >= 14
|
2023-09-01 17:52:02 -07:00
|
|
|
template <typename _K2, enable_if_t<__is_transparent<_Compare, _K2>::value, int> = 0>
|
Use multi-key tree search for {map, set}::{count, equal_range}
Patch from ngolovliov@gmail.com
Reviewed as: https://reviews.llvm.org/D42344
As described in llvm.org/PR30959, the current
implementation of std::{map, key}::{count, equal_range} in libcxx is
non-conforming. Quoting the C++14 standard [associative.reqmts]p3
> The phrase “equivalence of keys” means the equivalence relation imposed by
> the comparison and not the operator== on keys. That is, two keys k1 and k2 are
> considered to be equivalent if for the comparison object comp,
> comp(k1, k2) == false && comp(k2, k1) == false.
In the same section, the requirements table states the following:
> a.equal_range(k) equivalent to make_pair(a.lower_bound(k), a.upper_bound(k))
> a.count(k) returns the number of elements with key equivalent to k
The behaviour of libstdc++ seems to conform to the standard here.
llvm-svn: 324799
2018-02-10 02:53:47 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI size_type count(const _K2& __k) const {
|
|
|
|
return __tree_.__count_multi(__k);
|
|
|
|
}
|
2014-08-24 23:54:16 +00:00
|
|
|
#endif
|
2019-07-16 03:21:01 +00:00
|
|
|
|
2023-02-14 00:56:09 +01:00
|
|
|
#if _LIBCPP_STD_VER >= 20
|
2019-07-16 03:21:01 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI bool contains(const key_type& __k) const { return find(__k) != end(); }
|
2023-09-01 17:52:02 -07:00
|
|
|
template <typename _K2, enable_if_t<__is_transparent<_Compare, _K2>::value, int> = 0>
|
2021-04-13 17:10:55 +02:00
|
|
|
_LIBCPP_HIDE_FROM_ABI bool contains(const _K2& __k) const {
|
|
|
|
return find(__k) != end();
|
|
|
|
}
|
2023-02-14 00:56:09 +01:00
|
|
|
#endif // _LIBCPP_STD_VER >= 20
|
2019-07-16 03:21:01 +00:00
|
|
|
|
2010-05-11 19:42:16 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI iterator lower_bound(const key_type& __k) { return __tree_.lower_bound(__k); }
|
|
|
|
_LIBCPP_HIDE_FROM_ABI const_iterator lower_bound(const key_type& __k) const { return __tree_.lower_bound(__k); }
|
2023-02-14 00:56:09 +01:00
|
|
|
#if _LIBCPP_STD_VER >= 14
|
2023-09-01 17:52:02 -07:00
|
|
|
template <typename _K2, enable_if_t<__is_transparent<_Compare, _K2>::value, int> = 0>
|
2013-08-13 22:18:47 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI iterator lower_bound(const _K2& __k) {
|
|
|
|
return __tree_.lower_bound(__k);
|
|
|
|
}
|
2023-12-18 14:01:33 -05:00
|
|
|
|
2023-09-01 17:52:02 -07:00
|
|
|
template <typename _K2, enable_if_t<__is_transparent<_Compare, _K2>::value, int> = 0>
|
2013-08-13 22:18:47 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI const_iterator lower_bound(const _K2& __k) const {
|
|
|
|
return __tree_.lower_bound(__k);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2010-05-11 19:42:16 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI iterator upper_bound(const key_type& __k) { return __tree_.upper_bound(__k); }
|
|
|
|
_LIBCPP_HIDE_FROM_ABI const_iterator upper_bound(const key_type& __k) const { return __tree_.upper_bound(__k); }
|
2023-02-14 00:56:09 +01:00
|
|
|
#if _LIBCPP_STD_VER >= 14
|
2023-09-01 17:52:02 -07:00
|
|
|
template <typename _K2, enable_if_t<__is_transparent<_Compare, _K2>::value, int> = 0>
|
2013-08-13 22:18:47 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI iterator upper_bound(const _K2& __k) {
|
|
|
|
return __tree_.upper_bound(__k);
|
|
|
|
}
|
2023-09-01 17:52:02 -07:00
|
|
|
template <typename _K2, enable_if_t<__is_transparent<_Compare, _K2>::value, int> = 0>
|
2013-08-13 22:18:47 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI const_iterator upper_bound(const _K2& __k) const {
|
|
|
|
return __tree_.upper_bound(__k);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2010-05-11 19:42:16 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI pair<iterator, iterator> equal_range(const key_type& __k) {
|
|
|
|
return __tree_.__equal_range_unique(__k);
|
|
|
|
}
|
|
|
|
_LIBCPP_HIDE_FROM_ABI pair<const_iterator, const_iterator> equal_range(const key_type& __k) const {
|
|
|
|
return __tree_.__equal_range_unique(__k);
|
|
|
|
}
|
2023-02-14 00:56:09 +01:00
|
|
|
#if _LIBCPP_STD_VER >= 14
|
2023-09-01 17:52:02 -07:00
|
|
|
template <typename _K2, enable_if_t<__is_transparent<_Compare, _K2>::value, int> = 0>
|
Use multi-key tree search for {map, set}::{count, equal_range}
Patch from ngolovliov@gmail.com
Reviewed as: https://reviews.llvm.org/D42344
As described in llvm.org/PR30959, the current
implementation of std::{map, key}::{count, equal_range} in libcxx is
non-conforming. Quoting the C++14 standard [associative.reqmts]p3
> The phrase “equivalence of keys” means the equivalence relation imposed by
> the comparison and not the operator== on keys. That is, two keys k1 and k2 are
> considered to be equivalent if for the comparison object comp,
> comp(k1, k2) == false && comp(k2, k1) == false.
In the same section, the requirements table states the following:
> a.equal_range(k) equivalent to make_pair(a.lower_bound(k), a.upper_bound(k))
> a.count(k) returns the number of elements with key equivalent to k
The behaviour of libstdc++ seems to conform to the standard here.
llvm-svn: 324799
2018-02-10 02:53:47 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI pair<iterator, iterator> equal_range(const _K2& __k) {
|
|
|
|
return __tree_.__equal_range_multi(__k);
|
|
|
|
}
|
2023-09-01 17:52:02 -07:00
|
|
|
template <typename _K2, enable_if_t<__is_transparent<_Compare, _K2>::value, int> = 0>
|
|
|
|
_LIBCPP_HIDE_FROM_ABI pair<const_iterator, const_iterator> equal_range(const _K2& __k) const {
|
Use multi-key tree search for {map, set}::{count, equal_range}
Patch from ngolovliov@gmail.com
Reviewed as: https://reviews.llvm.org/D42344
As described in llvm.org/PR30959, the current
implementation of std::{map, key}::{count, equal_range} in libcxx is
non-conforming. Quoting the C++14 standard [associative.reqmts]p3
> The phrase “equivalence of keys” means the equivalence relation imposed by
> the comparison and not the operator== on keys. That is, two keys k1 and k2 are
> considered to be equivalent if for the comparison object comp,
> comp(k1, k2) == false && comp(k2, k1) == false.
In the same section, the requirements table states the following:
> a.equal_range(k) equivalent to make_pair(a.lower_bound(k), a.upper_bound(k))
> a.count(k) returns the number of elements with key equivalent to k
The behaviour of libstdc++ seems to conform to the standard here.
llvm-svn: 324799
2018-02-10 02:53:47 +00:00
|
|
|
return __tree_.__equal_range_multi(__k);
|
|
|
|
}
|
2013-08-13 22:18:47 +00:00
|
|
|
#endif
|
2010-05-11 19:42:16 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
typedef typename __base::__node __node;
|
|
|
|
typedef typename __base::__node_allocator __node_allocator;
|
|
|
|
typedef typename __base::__node_pointer __node_pointer;
|
|
|
|
typedef typename __base::__node_base_pointer __node_base_pointer;
|
2017-01-05 06:06:18 +00:00
|
|
|
typedef typename __base::__parent_pointer __parent_pointer;
|
2016-02-20 07:12:17 +00:00
|
|
|
|
2011-11-29 18:15:50 +00:00
|
|
|
typedef __map_node_destructor<__node_allocator> _Dp;
|
|
|
|
typedef unique_ptr<__node, _Dp> __node_holder;
|
2010-05-11 19:42:16 +00:00
|
|
|
|
2016-03-31 03:13:37 +00:00
|
|
|
#ifdef _LIBCPP_CXX03_LANG
|
2023-01-23 10:27:14 +01:00
|
|
|
_LIBCPP_HIDE_FROM_ABI __node_holder __construct_node_with_key(const key_type& __k);
|
2016-03-31 03:13:37 +00:00
|
|
|
#endif
|
2010-05-11 19:42:16 +00:00
|
|
|
};
|
|
|
|
|
2021-08-17 11:59:07 -04:00
|
|
|
#if _LIBCPP_STD_VER >= 17
|
2019-06-20 19:32:00 +00:00
|
|
|
template <class _InputIterator,
|
|
|
|
class _Compare = less<__iter_key_type<_InputIterator>>,
|
|
|
|
class _Allocator = allocator<__iter_to_alloc_type<_InputIterator>>,
|
2023-05-17 10:34:51 -07:00
|
|
|
class = enable_if_t<__has_input_iterator_category<_InputIterator>::value, void>,
|
[libc++] Use enable_if_t instead of _EnableIf
I just ran into a compiler error involving __bind_back and some overloads
that were being disabled with _EnableIf. I noticed that the error message
was quite bad and did not mention the reason for the overload being
excluded. Specifically, the error looked like this:
candidate template ignored: substitution failure [with _Args =
<ContiguousView>]: no member named '_EnableIfImpl' in 'std::_MetaBase<false>'
Instead, when using enable_if or enable_if_t, the compiler is clever and
can produce better diagnostics, like so:
candidate template ignored: requirement 'is_invocable_v<
std::__bind_back_op<1, std::integer_sequence<unsigned long, 0>>,
std::ranges::views::__transform::__fn &, std::tuple<PlusOne> &,
ContiguousView>' was not satisfied [with _Args = <ContiguousView>]
Basically, it tries to do a poor man's implementation of concepts, which
is already a lot better than simply complaining about substitution failure.
Hence, this commit uses enable_if_t instead of _EnableIf whenever
possible. That is both more straightforward than using the internal
helper, and also leads to better error messages in those cases.
I understand the motivation for _EnableIf's implementation was to improve
compile-time performance, however I believe striving to improve error
messages is even more important for our QOI, hence this patch. Furthermore,
it is unclear that _EnableIf actually improved compile-time performance
in any noticeable way (see discussion in the review for details).
Differential Revision: https://reviews.llvm.org/D108216
2021-08-17 12:26:09 -04:00
|
|
|
class = enable_if_t<!__is_allocator<_Compare>::value, void>,
|
|
|
|
class = enable_if_t<__is_allocator<_Allocator>::value, void>>
|
2019-06-20 19:32:00 +00:00
|
|
|
map(_InputIterator, _InputIterator, _Compare = _Compare(), _Allocator = _Allocator())
|
|
|
|
-> map<__iter_key_type<_InputIterator>, __iter_mapped_type<_InputIterator>, _Compare, _Allocator>;
|
|
|
|
|
2023-07-10 17:16:56 -07:00
|
|
|
# if _LIBCPP_STD_VER >= 23
|
|
|
|
template <ranges::input_range _Range,
|
|
|
|
class _Compare = less<__range_key_type<_Range>>,
|
|
|
|
class _Allocator = allocator<__range_to_alloc_type<_Range>>,
|
|
|
|
class = enable_if_t<!__is_allocator<_Compare>::value, void>,
|
|
|
|
class = enable_if_t<__is_allocator<_Allocator>::value, void>>
|
|
|
|
map(from_range_t, _Range&&, _Compare = _Compare(), _Allocator = _Allocator())
|
|
|
|
-> map<__range_key_type<_Range>, __range_mapped_type<_Range>, _Compare, _Allocator>;
|
|
|
|
# endif
|
2023-12-18 14:01:33 -05:00
|
|
|
|
2019-06-20 19:32:00 +00:00
|
|
|
template <class _Key,
|
|
|
|
class _Tp,
|
|
|
|
class _Compare = less<remove_const_t<_Key>>,
|
|
|
|
class _Allocator = allocator<pair<const _Key, _Tp>>,
|
[libc++] Use enable_if_t instead of _EnableIf
I just ran into a compiler error involving __bind_back and some overloads
that were being disabled with _EnableIf. I noticed that the error message
was quite bad and did not mention the reason for the overload being
excluded. Specifically, the error looked like this:
candidate template ignored: substitution failure [with _Args =
<ContiguousView>]: no member named '_EnableIfImpl' in 'std::_MetaBase<false>'
Instead, when using enable_if or enable_if_t, the compiler is clever and
can produce better diagnostics, like so:
candidate template ignored: requirement 'is_invocable_v<
std::__bind_back_op<1, std::integer_sequence<unsigned long, 0>>,
std::ranges::views::__transform::__fn &, std::tuple<PlusOne> &,
ContiguousView>' was not satisfied [with _Args = <ContiguousView>]
Basically, it tries to do a poor man's implementation of concepts, which
is already a lot better than simply complaining about substitution failure.
Hence, this commit uses enable_if_t instead of _EnableIf whenever
possible. That is both more straightforward than using the internal
helper, and also leads to better error messages in those cases.
I understand the motivation for _EnableIf's implementation was to improve
compile-time performance, however I believe striving to improve error
messages is even more important for our QOI, hence this patch. Furthermore,
it is unclear that _EnableIf actually improved compile-time performance
in any noticeable way (see discussion in the review for details).
Differential Revision: https://reviews.llvm.org/D108216
2021-08-17 12:26:09 -04:00
|
|
|
class = enable_if_t<!__is_allocator<_Compare>::value, void>,
|
|
|
|
class = enable_if_t<__is_allocator<_Allocator>::value, void>>
|
2019-06-20 19:32:00 +00:00
|
|
|
map(initializer_list<pair<_Key, _Tp>>, _Compare = _Compare(), _Allocator = _Allocator())
|
|
|
|
-> map<remove_const_t<_Key>, _Tp, _Compare, _Allocator>;
|
|
|
|
|
|
|
|
template <class _InputIterator,
|
|
|
|
class _Allocator,
|
2023-05-17 10:34:51 -07:00
|
|
|
class = enable_if_t<__has_input_iterator_category<_InputIterator>::value, void>,
|
[libc++] Use enable_if_t instead of _EnableIf
I just ran into a compiler error involving __bind_back and some overloads
that were being disabled with _EnableIf. I noticed that the error message
was quite bad and did not mention the reason for the overload being
excluded. Specifically, the error looked like this:
candidate template ignored: substitution failure [with _Args =
<ContiguousView>]: no member named '_EnableIfImpl' in 'std::_MetaBase<false>'
Instead, when using enable_if or enable_if_t, the compiler is clever and
can produce better diagnostics, like so:
candidate template ignored: requirement 'is_invocable_v<
std::__bind_back_op<1, std::integer_sequence<unsigned long, 0>>,
std::ranges::views::__transform::__fn &, std::tuple<PlusOne> &,
ContiguousView>' was not satisfied [with _Args = <ContiguousView>]
Basically, it tries to do a poor man's implementation of concepts, which
is already a lot better than simply complaining about substitution failure.
Hence, this commit uses enable_if_t instead of _EnableIf whenever
possible. That is both more straightforward than using the internal
helper, and also leads to better error messages in those cases.
I understand the motivation for _EnableIf's implementation was to improve
compile-time performance, however I believe striving to improve error
messages is even more important for our QOI, hence this patch. Furthermore,
it is unclear that _EnableIf actually improved compile-time performance
in any noticeable way (see discussion in the review for details).
Differential Revision: https://reviews.llvm.org/D108216
2021-08-17 12:26:09 -04:00
|
|
|
class = enable_if_t<__is_allocator<_Allocator>::value, void>>
|
2019-06-20 19:32:00 +00:00
|
|
|
map(_InputIterator, _InputIterator, _Allocator)
|
|
|
|
-> map<__iter_key_type<_InputIterator>,
|
|
|
|
__iter_mapped_type<_InputIterator>,
|
|
|
|
less<__iter_key_type<_InputIterator>>,
|
|
|
|
_Allocator>;
|
|
|
|
|
2023-07-10 17:16:56 -07:00
|
|
|
# if _LIBCPP_STD_VER >= 23
|
|
|
|
template <ranges::input_range _Range, class _Allocator, class = enable_if_t<__is_allocator<_Allocator>::value, void>>
|
|
|
|
map(from_range_t, _Range&&, _Allocator)
|
|
|
|
-> map<__range_key_type<_Range>, __range_mapped_type<_Range>, less<__range_key_type<_Range>>, _Allocator>;
|
|
|
|
# endif
|
|
|
|
|
[libc++] Use enable_if_t instead of _EnableIf
I just ran into a compiler error involving __bind_back and some overloads
that were being disabled with _EnableIf. I noticed that the error message
was quite bad and did not mention the reason for the overload being
excluded. Specifically, the error looked like this:
candidate template ignored: substitution failure [with _Args =
<ContiguousView>]: no member named '_EnableIfImpl' in 'std::_MetaBase<false>'
Instead, when using enable_if or enable_if_t, the compiler is clever and
can produce better diagnostics, like so:
candidate template ignored: requirement 'is_invocable_v<
std::__bind_back_op<1, std::integer_sequence<unsigned long, 0>>,
std::ranges::views::__transform::__fn &, std::tuple<PlusOne> &,
ContiguousView>' was not satisfied [with _Args = <ContiguousView>]
Basically, it tries to do a poor man's implementation of concepts, which
is already a lot better than simply complaining about substitution failure.
Hence, this commit uses enable_if_t instead of _EnableIf whenever
possible. That is both more straightforward than using the internal
helper, and also leads to better error messages in those cases.
I understand the motivation for _EnableIf's implementation was to improve
compile-time performance, however I believe striving to improve error
messages is even more important for our QOI, hence this patch. Furthermore,
it is unclear that _EnableIf actually improved compile-time performance
in any noticeable way (see discussion in the review for details).
Differential Revision: https://reviews.llvm.org/D108216
2021-08-17 12:26:09 -04:00
|
|
|
template <class _Key, class _Tp, class _Allocator, class = enable_if_t<__is_allocator<_Allocator>::value, void>>
|
2019-06-20 19:32:00 +00:00
|
|
|
map(initializer_list<pair<_Key, _Tp>>, _Allocator)
|
|
|
|
-> map<remove_const_t<_Key>, _Tp, less<remove_const_t<_Key>>, _Allocator>;
|
|
|
|
#endif
|
2010-05-11 19:42:16 +00:00
|
|
|
|
2016-03-31 02:15:15 +00:00
|
|
|
#ifndef _LIBCPP_CXX03_LANG
|
2010-05-11 19:42:16 +00:00
|
|
|
template <class _Key, class _Tp, class _Compare, class _Allocator>
|
|
|
|
map<_Key, _Tp, _Compare, _Allocator>::map(map&& __m, const allocator_type& __a)
|
2016-08-17 05:58:40 +00:00
|
|
|
: __tree_(std::move(__m.__tree_), typename __base::allocator_type(__a)) {
|
2010-05-11 19:42:16 +00:00
|
|
|
if (__a != __m.get_allocator()) {
|
|
|
|
const_iterator __e = cend();
|
|
|
|
while (!__m.empty())
|
2018-06-04 20:38:23 +00:00
|
|
|
__tree_.__insert_unique(__e.__i_, __m.__tree_.remove(__m.begin().__i_)->__value_.__move());
|
2010-05-11 19:42:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-18 21:08:06 +00:00
|
|
|
template <class _Key, class _Tp, class _Compare, class _Allocator>
|
|
|
|
_Tp& map<_Key, _Tp, _Compare, _Allocator>::operator[](const key_type& __k) {
|
|
|
|
return __tree_
|
|
|
|
.__emplace_unique_key_args(__k, std::piecewise_construct, std::forward_as_tuple(__k), std::forward_as_tuple())
|
2018-06-04 20:38:23 +00:00
|
|
|
.first->__get_value()
|
|
|
|
.second;
|
2017-04-18 21:08:06 +00:00
|
|
|
}
|
2010-05-11 19:42:16 +00:00
|
|
|
|
2017-04-18 21:08:06 +00:00
|
|
|
template <class _Key, class _Tp, class _Compare, class _Allocator>
|
|
|
|
_Tp& map<_Key, _Tp, _Compare, _Allocator>::operator[](key_type&& __k) {
|
2023-09-05 20:10:38 +02:00
|
|
|
// TODO investigate this clang-tidy warning.
|
2023-12-18 17:49:13 -05:00
|
|
|
// NOLINTBEGIN(bugprone-use-after-move)
|
2017-04-18 21:08:06 +00:00
|
|
|
return __tree_
|
|
|
|
.__emplace_unique_key_args(
|
|
|
|
__k, std::piecewise_construct, std::forward_as_tuple(std::move(__k)), std::forward_as_tuple())
|
2018-06-04 20:38:23 +00:00
|
|
|
.first->__get_value()
|
|
|
|
.second;
|
2023-12-18 17:49:13 -05:00
|
|
|
// NOLINTEND(bugprone-use-after-move)
|
2017-04-18 21:08:06 +00:00
|
|
|
}
|
2012-05-25 22:04:21 +00:00
|
|
|
|
2017-04-18 21:08:06 +00:00
|
|
|
#else // _LIBCPP_CXX03_LANG
|
2010-05-11 19:42:16 +00:00
|
|
|
|
|
|
|
template <class _Key, class _Tp, class _Compare, class _Allocator>
|
|
|
|
typename map<_Key, _Tp, _Compare, _Allocator>::__node_holder
|
2013-07-04 20:59:16 +00:00
|
|
|
map<_Key, _Tp, _Compare, _Allocator>::__construct_node_with_key(const key_type& __k) {
|
2010-05-11 19:42:16 +00:00
|
|
|
__node_allocator& __na = __tree_.__node_alloc();
|
2011-11-29 18:15:50 +00:00
|
|
|
__node_holder __h(__node_traits::allocate(__na, 1), _Dp(__na));
|
2018-06-04 20:38:23 +00:00
|
|
|
__node_traits::construct(__na, std::addressof(__h->__value_.__get_value().first), __k);
|
2010-05-11 19:42:16 +00:00
|
|
|
__h.get_deleter().__first_constructed = true;
|
2018-06-04 20:38:23 +00:00
|
|
|
__node_traits::construct(__na, std::addressof(__h->__value_.__get_value().second));
|
2010-05-11 19:42:16 +00:00
|
|
|
__h.get_deleter().__second_constructed = true;
|
2020-07-30 09:42:23 -04:00
|
|
|
return __h;
|
2010-05-11 19:42:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
template <class _Key, class _Tp, class _Compare, class _Allocator>
|
|
|
|
_Tp& map<_Key, _Tp, _Compare, _Allocator>::operator[](const key_type& __k) {
|
2017-01-05 06:06:18 +00:00
|
|
|
__parent_pointer __parent;
|
|
|
|
__node_base_pointer& __child = __tree_.__find_equal(__parent, __k);
|
2010-05-11 19:42:16 +00:00
|
|
|
__node_pointer __r = static_cast<__node_pointer>(__child);
|
|
|
|
if (__child == nullptr) {
|
2013-07-04 20:59:16 +00:00
|
|
|
__node_holder __h = __construct_node_with_key(__k);
|
2013-06-19 21:29:40 +00:00
|
|
|
__tree_.__insert_node_at(__parent, __child, static_cast<__node_base_pointer>(__h.get()));
|
2010-05-11 19:42:16 +00:00
|
|
|
__r = __h.release();
|
|
|
|
}
|
2018-06-04 20:38:23 +00:00
|
|
|
return __r->__value_.__get_value().second;
|
2010-05-11 19:42:16 +00:00
|
|
|
}
|
|
|
|
|
2021-04-20 12:03:32 -04:00
|
|
|
#endif // _LIBCPP_CXX03_LANG
|
2010-05-11 19:42:16 +00:00
|
|
|
|
|
|
|
template <class _Key, class _Tp, class _Compare, class _Allocator>
|
|
|
|
_Tp& map<_Key, _Tp, _Compare, _Allocator>::at(const key_type& __k) {
|
2017-01-05 06:06:18 +00:00
|
|
|
__parent_pointer __parent;
|
|
|
|
__node_base_pointer& __child = __tree_.__find_equal(__parent, __k);
|
2010-05-11 19:42:16 +00:00
|
|
|
if (__child == nullptr)
|
2019-02-12 16:06:02 +00:00
|
|
|
__throw_out_of_range("map::at: key not found");
|
2018-06-04 20:38:23 +00:00
|
|
|
return static_cast<__node_pointer>(__child)->__value_.__get_value().second;
|
2010-05-11 19:42:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
template <class _Key, class _Tp, class _Compare, class _Allocator>
|
|
|
|
const _Tp& map<_Key, _Tp, _Compare, _Allocator>::at(const key_type& __k) const {
|
2017-01-05 06:06:18 +00:00
|
|
|
__parent_pointer __parent;
|
|
|
|
__node_base_pointer __child = __tree_.__find_equal(__parent, __k);
|
2010-05-11 19:42:16 +00:00
|
|
|
if (__child == nullptr)
|
2019-02-12 16:06:02 +00:00
|
|
|
__throw_out_of_range("map::at: key not found");
|
2018-06-04 20:38:23 +00:00
|
|
|
return static_cast<__node_pointer>(__child)->__value_.__get_value().second;
|
2010-05-11 19:42:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
template <class _Key, class _Tp, class _Compare, class _Allocator>
|
2010-09-22 16:48:34 +00:00
|
|
|
inline _LIBCPP_HIDE_FROM_ABI bool
|
2010-05-11 19:42:16 +00:00
|
|
|
operator==(const map<_Key, _Tp, _Compare, _Allocator>& __x, const map<_Key, _Tp, _Compare, _Allocator>& __y) {
|
2011-06-30 21:18:19 +00:00
|
|
|
return __x.size() == __y.size() && std::equal(__x.begin(), __x.end(), __y.begin());
|
2010-05-11 19:42:16 +00:00
|
|
|
}
|
|
|
|
|
2023-03-15 15:23:53 +01:00
|
|
|
#if _LIBCPP_STD_VER <= 17
|
|
|
|
|
2010-05-11 19:42:16 +00:00
|
|
|
template <class _Key, class _Tp, class _Compare, class _Allocator>
|
2010-09-22 16:48:34 +00:00
|
|
|
inline _LIBCPP_HIDE_FROM_ABI bool
|
2010-05-11 19:42:16 +00:00
|
|
|
operator<(const map<_Key, _Tp, _Compare, _Allocator>& __x, const map<_Key, _Tp, _Compare, _Allocator>& __y) {
|
2011-06-30 21:18:19 +00:00
|
|
|
return std::lexicographical_compare(__x.begin(), __x.end(), __y.begin(), __y.end());
|
2010-05-11 19:42:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
template <class _Key, class _Tp, class _Compare, class _Allocator>
|
2010-09-22 16:48:34 +00:00
|
|
|
inline _LIBCPP_HIDE_FROM_ABI bool
|
2010-05-11 19:42:16 +00:00
|
|
|
operator!=(const map<_Key, _Tp, _Compare, _Allocator>& __x, const map<_Key, _Tp, _Compare, _Allocator>& __y) {
|
|
|
|
return !(__x == __y);
|
|
|
|
}
|
|
|
|
|
|
|
|
template <class _Key, class _Tp, class _Compare, class _Allocator>
|
2010-09-22 16:48:34 +00:00
|
|
|
inline _LIBCPP_HIDE_FROM_ABI bool
|
2010-05-11 19:42:16 +00:00
|
|
|
operator>(const map<_Key, _Tp, _Compare, _Allocator>& __x, const map<_Key, _Tp, _Compare, _Allocator>& __y) {
|
|
|
|
return __y < __x;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <class _Key, class _Tp, class _Compare, class _Allocator>
|
2010-09-22 16:48:34 +00:00
|
|
|
inline _LIBCPP_HIDE_FROM_ABI bool
|
2010-05-11 19:42:16 +00:00
|
|
|
operator>=(const map<_Key, _Tp, _Compare, _Allocator>& __x, const map<_Key, _Tp, _Compare, _Allocator>& __y) {
|
|
|
|
return !(__x < __y);
|
|
|
|
}
|
|
|
|
|
|
|
|
template <class _Key, class _Tp, class _Compare, class _Allocator>
|
2010-09-22 16:48:34 +00:00
|
|
|
inline _LIBCPP_HIDE_FROM_ABI bool
|
2010-05-11 19:42:16 +00:00
|
|
|
operator<=(const map<_Key, _Tp, _Compare, _Allocator>& __x, const map<_Key, _Tp, _Compare, _Allocator>& __y) {
|
|
|
|
return !(__y < __x);
|
|
|
|
}
|
|
|
|
|
2023-03-15 15:23:53 +01:00
|
|
|
#else // #if _LIBCPP_STD_VER <= 17
|
|
|
|
|
2023-05-23 23:03:35 +03:00
|
|
|
template <class _Key, class _Tp, class _Compare, class _Allocator>
|
|
|
|
_LIBCPP_HIDE_FROM_ABI __synth_three_way_result<pair<const _Key, _Tp>>
|
|
|
|
operator<=>(const map<_Key, _Tp, _Compare, _Allocator>& __x, const map<_Key, _Tp, _Compare, _Allocator>& __y) {
|
2023-03-15 15:23:53 +01:00
|
|
|
return std::lexicographical_compare_three_way(
|
2023-03-21 18:05:35 +01:00
|
|
|
__x.begin(),
|
|
|
|
__x.end(),
|
|
|
|
__y.begin(),
|
|
|
|
__y.end(),
|
|
|
|
std::__synth_three_way<pair<const _Key, _Tp>, pair<const _Key, _Tp>>);
|
2023-03-15 15:23:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif // #if _LIBCPP_STD_VER <= 17
|
|
|
|
|
2010-05-11 19:42:16 +00:00
|
|
|
template <class _Key, class _Tp, class _Compare, class _Allocator>
|
2010-09-22 16:48:34 +00:00
|
|
|
inline _LIBCPP_HIDE_FROM_ABI void
|
2010-05-11 19:42:16 +00:00
|
|
|
swap(map<_Key, _Tp, _Compare, _Allocator>& __x, map<_Key, _Tp, _Compare, _Allocator>& __y)
|
2011-06-04 14:31:57 +00:00
|
|
|
_NOEXCEPT_(_NOEXCEPT_(__x.swap(__y))) {
|
2010-05-11 19:42:16 +00:00
|
|
|
__x.swap(__y);
|
|
|
|
}
|
|
|
|
|
2023-02-14 00:56:09 +01:00
|
|
|
#if _LIBCPP_STD_VER >= 20
|
2020-05-02 13:58:03 +02:00
|
|
|
template <class _Key, class _Tp, class _Compare, class _Allocator, class _Predicate>
|
|
|
|
inline _LIBCPP_HIDE_FROM_ABI typename map<_Key, _Tp, _Compare, _Allocator>::size_type
|
|
|
|
erase_if(map<_Key, _Tp, _Compare, _Allocator>& __c, _Predicate __pred) {
|
2021-03-21 16:53:09 -04:00
|
|
|
return std::__libcpp_erase_if_container(__c, __pred);
|
2020-05-02 13:58:03 +02:00
|
|
|
}
|
2018-12-14 18:49:35 +00:00
|
|
|
#endif
|
|
|
|
|
2010-05-11 19:42:16 +00:00
|
|
|
template <class _Key, class _Tp, class _Compare = less<_Key>, class _Allocator = allocator<pair<const _Key, _Tp> > >
|
2017-01-04 23:56:00 +00:00
|
|
|
class _LIBCPP_TEMPLATE_VIS multimap {
|
2010-05-11 19:42:16 +00:00
|
|
|
public:
|
|
|
|
// types:
|
|
|
|
typedef _Key key_type;
|
|
|
|
typedef _Tp mapped_type;
|
|
|
|
typedef pair<const key_type, mapped_type> value_type;
|
2022-03-18 17:49:02 +01:00
|
|
|
typedef __type_identity_t<_Compare> key_compare;
|
|
|
|
typedef __type_identity_t<_Allocator> allocator_type;
|
2010-05-11 19:42:16 +00:00
|
|
|
typedef value_type& reference;
|
|
|
|
typedef const value_type& const_reference;
|
|
|
|
|
2015-11-26 01:24:04 +00:00
|
|
|
static_assert((is_same<typename allocator_type::value_type, value_type>::value),
|
|
|
|
"Allocator::value_type must be same type as value_type");
|
|
|
|
|
2022-06-22 10:11:14 +02:00
|
|
|
class _LIBCPP_TEMPLATE_VIS value_compare : public __binary_function<value_type, value_type, bool> {
|
2010-05-11 19:42:16 +00:00
|
|
|
friend class multimap;
|
|
|
|
|
2022-07-08 18:17:26 +02:00
|
|
|
protected:
|
|
|
|
key_compare comp;
|
2010-05-11 19:42:16 +00:00
|
|
|
|
|
|
|
_LIBCPP_HIDE_FROM_ABI value_compare(key_compare __c) : comp(__c) {}
|
2013-06-19 21:29:40 +00:00
|
|
|
|
2023-12-18 14:01:33 -05:00
|
|
|
public:
|
2010-05-11 19:42:16 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI bool operator()(const value_type& __x, const value_type& __y) const {
|
|
|
|
return comp(__x.first, __y.first);
|
2023-12-18 14:01:33 -05:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
private:
|
2013-09-30 19:08:22 +00:00
|
|
|
typedef std::__value_type<key_type, mapped_type> __value_type;
|
2013-07-05 18:06:00 +00:00
|
|
|
typedef __map_value_compare<key_type, __value_type, key_compare> __vc;
|
2022-10-08 22:17:32 +02:00
|
|
|
typedef __rebind_alloc<allocator_traits<allocator_type>, __value_type> __allocator_type;
|
2010-05-11 19:42:16 +00:00
|
|
|
typedef __tree<__value_type, __vc, __allocator_type> __base;
|
|
|
|
typedef typename __base::__node_traits __node_traits;
|
|
|
|
typedef allocator_traits<allocator_type> __alloc_traits;
|
|
|
|
|
2022-10-08 22:17:32 +02:00
|
|
|
static_assert(is_same<allocator_type, __rebind_alloc<__alloc_traits, value_type> >::value,
|
|
|
|
"[allocator.requirements] states that rebinding an allocator to the same type should result in the "
|
|
|
|
"original allocator");
|
|
|
|
|
2010-05-11 19:42:16 +00:00
|
|
|
__base __tree_;
|
|
|
|
|
|
|
|
public:
|
|
|
|
typedef typename __alloc_traits::pointer pointer;
|
|
|
|
typedef typename __alloc_traits::const_pointer const_pointer;
|
|
|
|
typedef typename __alloc_traits::size_type size_type;
|
|
|
|
typedef typename __alloc_traits::difference_type difference_type;
|
|
|
|
typedef __map_iterator<typename __base::iterator> iterator;
|
|
|
|
typedef __map_const_iterator<typename __base::const_iterator> const_iterator;
|
2011-06-30 21:18:19 +00:00
|
|
|
typedef std::reverse_iterator<iterator> reverse_iterator;
|
|
|
|
typedef std::reverse_iterator<const_iterator> const_reverse_iterator;
|
2010-05-11 19:42:16 +00:00
|
|
|
|
2023-02-14 00:56:09 +01:00
|
|
|
#if _LIBCPP_STD_VER >= 17
|
2018-08-01 01:33:38 +00:00
|
|
|
typedef __map_node_handle<typename __base::__node, allocator_type> node_type;
|
|
|
|
#endif
|
|
|
|
|
2018-10-31 17:31:35 +00:00
|
|
|
template <class _Key2, class _Value2, class _Comp2, class _Alloc2>
|
|
|
|
friend class _LIBCPP_TEMPLATE_VIS map;
|
|
|
|
template <class _Key2, class _Value2, class _Comp2, class _Alloc2>
|
|
|
|
friend class _LIBCPP_TEMPLATE_VIS multimap;
|
|
|
|
|
2010-09-22 16:48:34 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI multimap() _NOEXCEPT_(
|
2014-03-10 04:50:10 +00:00
|
|
|
is_nothrow_default_constructible<allocator_type>::value&& is_nothrow_default_constructible<key_compare>::value&&
|
|
|
|
is_nothrow_copy_constructible<key_compare>::value)
|
|
|
|
: __tree_(__vc(key_compare())) {}
|
|
|
|
|
|
|
|
_LIBCPP_HIDE_FROM_ABI explicit multimap(const key_compare& __comp) _NOEXCEPT_(
|
2011-06-04 14:31:57 +00:00
|
|
|
is_nothrow_default_constructible<allocator_type>::value&& is_nothrow_copy_constructible<key_compare>::value)
|
2010-05-11 19:42:16 +00:00
|
|
|
: __tree_(__vc(__comp)) {}
|
2023-12-18 14:01:33 -05:00
|
|
|
|
2010-05-11 19:42:16 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI explicit multimap(const key_compare& __comp, const allocator_type& __a)
|
2016-08-17 05:58:40 +00:00
|
|
|
: __tree_(__vc(__comp), typename __base::allocator_type(__a)) {}
|
2023-12-18 14:01:33 -05:00
|
|
|
|
2010-05-11 19:42:16 +00:00
|
|
|
template <class _InputIterator>
|
|
|
|
_LIBCPP_HIDE_FROM_ABI multimap(_InputIterator __f, _InputIterator __l, const key_compare& __comp = key_compare())
|
|
|
|
: __tree_(__vc(__comp)) {
|
|
|
|
insert(__f, __l);
|
|
|
|
}
|
2023-12-18 14:01:33 -05:00
|
|
|
|
2010-05-11 19:42:16 +00:00
|
|
|
template <class _InputIterator>
|
2010-09-22 16:48:34 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI
|
2010-05-11 19:42:16 +00:00
|
|
|
multimap(_InputIterator __f, _InputIterator __l, const key_compare& __comp, const allocator_type& __a)
|
2016-08-17 05:58:40 +00:00
|
|
|
: __tree_(__vc(__comp), typename __base::allocator_type(__a)) {
|
2010-05-11 19:42:16 +00:00
|
|
|
insert(__f, __l);
|
|
|
|
}
|
|
|
|
|
2023-07-10 17:16:56 -07:00
|
|
|
#if _LIBCPP_STD_VER >= 23
|
|
|
|
template <_ContainerCompatibleRange<value_type> _Range>
|
|
|
|
_LIBCPP_HIDE_FROM_ABI
|
|
|
|
multimap(from_range_t,
|
|
|
|
_Range&& __range,
|
|
|
|
const key_compare& __comp = key_compare(),
|
|
|
|
const allocator_type& __a = allocator_type())
|
|
|
|
: __tree_(__vc(__comp), typename __base::allocator_type(__a)) {
|
|
|
|
insert_range(std::forward<_Range>(__range));
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2023-02-14 00:56:09 +01:00
|
|
|
#if _LIBCPP_STD_VER >= 14
|
2013-09-11 01:15:47 +00:00
|
|
|
template <class _InputIterator>
|
|
|
|
_LIBCPP_HIDE_FROM_ABI multimap(_InputIterator __f, _InputIterator __l, const allocator_type& __a)
|
|
|
|
: multimap(__f, __l, key_compare(), __a) {}
|
|
|
|
#endif
|
|
|
|
|
2023-07-10 17:16:56 -07:00
|
|
|
#if _LIBCPP_STD_VER >= 23
|
|
|
|
template <_ContainerCompatibleRange<value_type> _Range>
|
|
|
|
_LIBCPP_HIDE_FROM_ABI multimap(from_range_t, _Range&& __range, const allocator_type& __a)
|
|
|
|
: multimap(from_range, std::forward<_Range>(__range), key_compare(), __a) {}
|
|
|
|
#endif
|
|
|
|
|
2010-05-11 19:42:16 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI multimap(const multimap& __m)
|
|
|
|
: __tree_(__m.__tree_.value_comp(),
|
|
|
|
__alloc_traits::select_on_container_copy_construction(__m.__tree_.__alloc())) {
|
|
|
|
insert(__m.begin(), __m.end());
|
|
|
|
}
|
2023-12-18 14:01:33 -05:00
|
|
|
|
2011-07-01 19:24:36 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI multimap& operator=(const multimap& __m) {
|
2016-07-18 13:19:00 +00:00
|
|
|
#ifndef _LIBCPP_CXX03_LANG
|
2011-07-01 19:24:36 +00:00
|
|
|
__tree_ = __m.__tree_;
|
2013-06-19 21:29:40 +00:00
|
|
|
#else
|
2021-09-28 19:15:18 +02:00
|
|
|
if (this != std::addressof(__m)) {
|
2014-02-08 04:03:14 +00:00
|
|
|
__tree_.clear();
|
|
|
|
__tree_.value_comp() = __m.__tree_.value_comp();
|
|
|
|
__tree_.__copy_assign_alloc(__m.__tree_);
|
|
|
|
insert(__m.begin(), __m.end());
|
|
|
|
}
|
2013-06-19 21:29:40 +00:00
|
|
|
#endif
|
2011-07-01 19:24:36 +00:00
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2017-04-18 21:08:06 +00:00
|
|
|
#ifndef _LIBCPP_CXX03_LANG
|
2010-05-11 19:42:16 +00:00
|
|
|
|
2011-06-04 14:31:57 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI multimap(multimap&& __m) _NOEXCEPT_(is_nothrow_move_constructible<__base>::value)
|
2011-08-12 21:56:02 +00:00
|
|
|
: __tree_(std::move(__m.__tree_)) {}
|
2010-05-11 19:42:16 +00:00
|
|
|
|
2013-09-11 01:15:47 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI multimap(multimap&& __m, const allocator_type& __a);
|
|
|
|
|
2011-08-12 21:56:02 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI multimap& operator=(multimap&& __m) _NOEXCEPT_(is_nothrow_move_assignable<__base>::value) {
|
2011-06-30 21:18:19 +00:00
|
|
|
__tree_ = std::move(__m.__tree_);
|
2011-08-12 21:56:02 +00:00
|
|
|
return *this;
|
2023-12-18 14:01:33 -05:00
|
|
|
}
|
|
|
|
|
2010-05-11 19:42:16 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI multimap(initializer_list<value_type> __il, const key_compare& __comp = key_compare())
|
2023-07-10 17:16:56 -07:00
|
|
|
: __tree_(__vc(__comp)) {
|
2010-05-11 19:42:16 +00:00
|
|
|
insert(__il.begin(), __il.end());
|
2023-12-18 14:01:33 -05:00
|
|
|
}
|
|
|
|
|
2010-09-22 16:48:34 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI
|
2010-05-11 19:42:16 +00:00
|
|
|
multimap(initializer_list<value_type> __il, const key_compare& __comp, const allocator_type& __a)
|
2023-07-10 17:16:56 -07:00
|
|
|
: __tree_(__vc(__comp), typename __base::allocator_type(__a)) {
|
2010-05-11 19:42:16 +00:00
|
|
|
insert(__il.begin(), __il.end());
|
2023-12-18 14:01:33 -05:00
|
|
|
}
|
|
|
|
|
2023-02-14 00:56:09 +01:00
|
|
|
# if _LIBCPP_STD_VER >= 14
|
2010-05-11 19:42:16 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI multimap(initializer_list<value_type> __il, const allocator_type& __a)
|
2013-09-11 01:15:47 +00:00
|
|
|
: multimap(__il, key_compare(), __a) {}
|
2023-12-18 14:01:33 -05:00
|
|
|
# endif
|
|
|
|
|
2010-05-11 19:42:16 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI multimap& operator=(initializer_list<value_type> __il) {
|
|
|
|
__tree_.__assign_multi(__il.begin(), __il.end());
|
|
|
|
return *this;
|
|
|
|
}
|
2011-08-12 21:56:02 +00:00
|
|
|
|
2021-04-20 12:03:32 -04:00
|
|
|
#endif // _LIBCPP_CXX03_LANG
|
2010-05-11 19:42:16 +00:00
|
|
|
|
2016-08-17 05:58:40 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI explicit multimap(const allocator_type& __a) : __tree_(typename __base::allocator_type(__a)) {}
|
[libc++] Make sure we don't eagerly diagnose non-const comparators for containers of incomplete types
Summary:
In r348529, I improved the library-defined diagnostic for using containers
with a non-const comparator/hasher. However, the check is now performed
too early, which leads to the diagnostic being emitted in cases where it
shouldn't. See PR41360 for details.
This patch moves the diagnostic to the destructor of the containers, which
means that the diagnostic will only be emitted when the container is instantiated
at a point where the comparator and the key/value are required to be complete.
We still retain better diagnostics than before r348529, because the diagnostics
are performed in the containers themselves instead of __tree and __hash_table.
As a drive-by fix, I improved the diagnostic to mention that we can't find
a _viable_ const call operator, as suggested by EricWF in PR41360.
Reviewers: EricWF, mclow.lists
Subscribers: christof, jkorous, dexonsmith, libcxx-commits, zoecarver
Tags: #libc
Differential Revision: https://reviews.llvm.org/D60540
llvm-svn: 358189
2019-04-11 16:14:56 +00:00
|
|
|
|
2010-09-22 16:48:34 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI multimap(const multimap& __m, const allocator_type& __a)
|
2011-06-04 14:31:57 +00:00
|
|
|
: __tree_(__m.__tree_.value_comp(), typename __base::allocator_type(__a)) {
|
|
|
|
insert(__m.begin(), __m.end());
|
2016-08-17 05:58:40 +00:00
|
|
|
}
|
2010-05-11 19:42:16 +00:00
|
|
|
|
2016-03-31 02:15:15 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI ~multimap() { static_assert(sizeof(__diagnose_non_const_comparator<_Key, _Compare>()), ""); }
|
2010-09-04 23:28:19 +00:00
|
|
|
|
2016-03-31 02:15:15 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI iterator begin() _NOEXCEPT { return __tree_.begin(); }
|
|
|
|
_LIBCPP_HIDE_FROM_ABI const_iterator begin() const _NOEXCEPT { return __tree_.begin(); }
|
|
|
|
_LIBCPP_HIDE_FROM_ABI iterator end() _NOEXCEPT { return __tree_.end(); }
|
|
|
|
_LIBCPP_HIDE_FROM_ABI const_iterator end() const _NOEXCEPT { return __tree_.end(); }
|
2010-09-04 23:28:19 +00:00
|
|
|
|
2016-03-31 02:15:15 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI reverse_iterator rbegin() _NOEXCEPT { return reverse_iterator(end()); }
|
|
|
|
_LIBCPP_HIDE_FROM_ABI const_reverse_iterator rbegin() const _NOEXCEPT { return const_reverse_iterator(end()); }
|
2011-06-04 14:31:57 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI reverse_iterator rend() _NOEXCEPT { return reverse_iterator(begin()); }
|
2016-03-31 02:15:15 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI const_reverse_iterator rend() const _NOEXCEPT { return const_reverse_iterator(begin()); }
|
2023-12-18 14:01:33 -05:00
|
|
|
|
2011-06-04 14:31:57 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI const_iterator cbegin() const _NOEXCEPT { return begin(); }
|
2016-03-31 02:15:15 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI const_iterator cend() const _NOEXCEPT { return end(); }
|
|
|
|
_LIBCPP_HIDE_FROM_ABI const_reverse_iterator crbegin() const _NOEXCEPT { return rbegin(); }
|
2011-06-04 14:31:57 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI const_reverse_iterator crend() const _NOEXCEPT { return rend(); }
|
2023-12-18 14:01:33 -05:00
|
|
|
|
2016-03-31 02:15:15 +00:00
|
|
|
_LIBCPP_NODISCARD_AFTER_CXX17 _LIBCPP_HIDE_FROM_ABI bool empty() const _NOEXCEPT { return __tree_.size() == 0; }
|
|
|
|
_LIBCPP_HIDE_FROM_ABI size_type size() const _NOEXCEPT { return __tree_.size(); }
|
|
|
|
_LIBCPP_HIDE_FROM_ABI size_type max_size() const _NOEXCEPT { return __tree_.max_size(); }
|
2023-12-18 14:01:33 -05:00
|
|
|
|
2016-03-31 02:15:15 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI allocator_type get_allocator() const _NOEXCEPT { return allocator_type(__tree_.__alloc()); }
|
2011-06-04 14:31:57 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI key_compare key_comp() const { return __tree_.value_comp().key_comp(); }
|
2016-03-31 02:15:15 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI value_compare value_comp() const { return value_compare(__tree_.value_comp().key_comp()); }
|
2010-09-04 23:28:19 +00:00
|
|
|
|
2011-11-29 18:15:50 +00:00
|
|
|
#ifndef _LIBCPP_CXX03_LANG
|
2023-12-18 14:01:33 -05:00
|
|
|
|
2011-11-29 18:15:50 +00:00
|
|
|
template <class... _Args>
|
2010-09-22 16:48:34 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI iterator emplace(_Args&&... __args) {
|
2011-11-29 18:15:50 +00:00
|
|
|
return __tree_.__emplace_multi(std::forward<_Args>(__args)...);
|
|
|
|
}
|
2010-05-11 19:42:16 +00:00
|
|
|
|
2011-11-29 18:15:50 +00:00
|
|
|
template <class... _Args>
|
|
|
|
_LIBCPP_HIDE_FROM_ABI iterator emplace_hint(const_iterator __p, _Args&&... __args) {
|
|
|
|
return __tree_.__emplace_hint_multi(__p.__i_, std::forward<_Args>(__args)...);
|
|
|
|
}
|
2010-05-11 19:42:16 +00:00
|
|
|
|
2024-02-20 01:47:38 +01:00
|
|
|
template <class _Pp, __enable_if_t<is_constructible<value_type, _Pp>::value, int> = 0>
|
2016-04-18 01:40:45 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI iterator insert(_Pp&& __p) {
|
|
|
|
return __tree_.__insert_multi(std::forward<_Pp>(__p));
|
|
|
|
}
|
|
|
|
|
2024-02-20 01:47:38 +01:00
|
|
|
template <class _Pp, __enable_if_t<is_constructible<value_type, _Pp>::value, int> = 0>
|
2016-04-18 01:40:45 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI iterator insert(const_iterator __pos, _Pp&& __p) {
|
|
|
|
return __tree_.__insert_multi(__pos.__i_, std::forward<_Pp>(__p));
|
|
|
|
}
|
|
|
|
|
2010-05-11 19:42:16 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI iterator insert(value_type&& __v) { return __tree_.__insert_multi(std::move(__v)); }
|
2017-04-18 21:08:06 +00:00
|
|
|
|
|
|
|
_LIBCPP_HIDE_FROM_ABI iterator insert(const_iterator __p, value_type&& __v) {
|
2010-05-11 19:42:16 +00:00
|
|
|
return __tree_.__insert_multi(__p.__i_, std::move(__v));
|
2023-12-18 14:01:33 -05:00
|
|
|
}
|
|
|
|
|
2017-04-18 21:08:06 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI void insert(initializer_list<value_type> __il) { insert(__il.begin(), __il.end()); }
|
|
|
|
|
2021-04-20 12:03:32 -04:00
|
|
|
#endif // _LIBCPP_CXX03_LANG
|
2010-05-11 19:42:16 +00:00
|
|
|
|
|
|
|
_LIBCPP_HIDE_FROM_ABI iterator insert(const value_type& __v) { return __tree_.__insert_multi(__v); }
|
|
|
|
|
|
|
|
_LIBCPP_HIDE_FROM_ABI iterator insert(const_iterator __p, const value_type& __v) {
|
|
|
|
return __tree_.__insert_multi(__p.__i_, __v);
|
|
|
|
}
|
|
|
|
|
|
|
|
template <class _InputIterator>
|
|
|
|
_LIBCPP_HIDE_FROM_ABI void insert(_InputIterator __f, _InputIterator __l) {
|
|
|
|
for (const_iterator __e = cend(); __f != __l; ++__f)
|
|
|
|
__tree_.__insert_multi(__e.__i_, *__f);
|
|
|
|
}
|
|
|
|
|
2023-07-10 17:16:56 -07:00
|
|
|
#if _LIBCPP_STD_VER >= 23
|
|
|
|
template <_ContainerCompatibleRange<value_type> _Range>
|
|
|
|
_LIBCPP_HIDE_FROM_ABI void insert_range(_Range&& __range) {
|
|
|
|
const_iterator __end = cend();
|
|
|
|
for (auto&& __element : __range) {
|
|
|
|
__tree_.__insert_multi(__end.__i_, std::forward<decltype(__element)>(__element));
|
|
|
|
}
|
2023-12-18 14:01:33 -05:00
|
|
|
}
|
2023-07-10 17:16:56 -07:00
|
|
|
#endif
|
|
|
|
|
2010-05-11 19:42:16 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI iterator erase(const_iterator __p) { return __tree_.erase(__p.__i_); }
|
2015-05-10 13:35:00 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI iterator erase(iterator __p) { return __tree_.erase(__p.__i_); }
|
2010-05-11 19:42:16 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI size_type erase(const key_type& __k) { return __tree_.__erase_multi(__k); }
|
|
|
|
_LIBCPP_HIDE_FROM_ABI iterator erase(const_iterator __f, const_iterator __l) {
|
|
|
|
return __tree_.erase(__f.__i_, __l.__i_);
|
|
|
|
}
|
2018-08-01 01:33:38 +00:00
|
|
|
|
2023-02-14 00:56:09 +01:00
|
|
|
#if _LIBCPP_STD_VER >= 17
|
2018-08-01 01:33:38 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI iterator insert(node_type&& __nh) {
|
2023-07-20 10:13:54 -07:00
|
|
|
_LIBCPP_ASSERT_COMPATIBLE_ALLOCATOR(__nh.empty() || __nh.get_allocator() == get_allocator(),
|
2018-08-01 01:33:38 +00:00
|
|
|
"node_type with incompatible allocator passed to multimap::insert()");
|
|
|
|
return __tree_.template __node_handle_insert_multi<node_type>(std::move(__nh));
|
|
|
|
}
|
|
|
|
_LIBCPP_HIDE_FROM_ABI iterator insert(const_iterator __hint, node_type&& __nh) {
|
2023-07-20 10:13:54 -07:00
|
|
|
_LIBCPP_ASSERT_COMPATIBLE_ALLOCATOR(__nh.empty() || __nh.get_allocator() == get_allocator(),
|
2018-08-01 01:33:38 +00:00
|
|
|
"node_type with incompatible allocator passed to multimap::insert()");
|
|
|
|
return __tree_.template __node_handle_insert_multi<node_type>(__hint.__i_, std::move(__nh));
|
|
|
|
}
|
|
|
|
_LIBCPP_HIDE_FROM_ABI node_type extract(key_type const& __key) {
|
|
|
|
return __tree_.template __node_handle_extract<node_type>(__key);
|
|
|
|
}
|
|
|
|
_LIBCPP_HIDE_FROM_ABI node_type extract(const_iterator __it) {
|
|
|
|
return __tree_.template __node_handle_extract<node_type>(__it.__i_);
|
|
|
|
}
|
2018-11-01 14:41:37 +00:00
|
|
|
template <class _Compare2>
|
|
|
|
_LIBCPP_HIDE_FROM_ABI void merge(multimap<key_type, mapped_type, _Compare2, allocator_type>& __source) {
|
2023-07-20 10:13:54 -07:00
|
|
|
_LIBCPP_ASSERT_COMPATIBLE_ALLOCATOR(
|
|
|
|
__source.get_allocator() == get_allocator(), "merging container with incompatible allocator");
|
2018-10-31 17:31:35 +00:00
|
|
|
return __tree_.__node_handle_merge_multi(__source.__tree_);
|
|
|
|
}
|
2018-11-01 14:41:37 +00:00
|
|
|
template <class _Compare2>
|
|
|
|
_LIBCPP_HIDE_FROM_ABI void merge(multimap<key_type, mapped_type, _Compare2, allocator_type>&& __source) {
|
2023-07-20 10:13:54 -07:00
|
|
|
_LIBCPP_ASSERT_COMPATIBLE_ALLOCATOR(
|
|
|
|
__source.get_allocator() == get_allocator(), "merging container with incompatible allocator");
|
2018-10-31 17:31:35 +00:00
|
|
|
return __tree_.__node_handle_merge_multi(__source.__tree_);
|
|
|
|
}
|
2018-11-01 14:41:37 +00:00
|
|
|
template <class _Compare2>
|
|
|
|
_LIBCPP_HIDE_FROM_ABI void merge(map<key_type, mapped_type, _Compare2, allocator_type>& __source) {
|
2023-07-20 10:13:54 -07:00
|
|
|
_LIBCPP_ASSERT_COMPATIBLE_ALLOCATOR(
|
|
|
|
__source.get_allocator() == get_allocator(), "merging container with incompatible allocator");
|
2018-10-31 17:31:35 +00:00
|
|
|
return __tree_.__node_handle_merge_multi(__source.__tree_);
|
|
|
|
}
|
2018-11-01 14:41:37 +00:00
|
|
|
template <class _Compare2>
|
|
|
|
_LIBCPP_HIDE_FROM_ABI void merge(map<key_type, mapped_type, _Compare2, allocator_type>&& __source) {
|
2023-07-20 10:13:54 -07:00
|
|
|
_LIBCPP_ASSERT_COMPATIBLE_ALLOCATOR(
|
|
|
|
__source.get_allocator() == get_allocator(), "merging container with incompatible allocator");
|
2018-10-31 17:31:35 +00:00
|
|
|
return __tree_.__node_handle_merge_multi(__source.__tree_);
|
|
|
|
}
|
2018-08-01 01:33:38 +00:00
|
|
|
#endif
|
|
|
|
|
2018-08-22 04:28:43 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI void clear() _NOEXCEPT { __tree_.clear(); }
|
2010-05-11 19:42:16 +00:00
|
|
|
|
2011-06-04 14:31:57 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI void swap(multimap& __m) _NOEXCEPT_(__is_nothrow_swappable<__base>::value) {
|
|
|
|
__tree_.swap(__m.__tree_);
|
|
|
|
}
|
2010-05-11 19:42:16 +00:00
|
|
|
|
|
|
|
_LIBCPP_HIDE_FROM_ABI iterator find(const key_type& __k) { return __tree_.find(__k); }
|
|
|
|
_LIBCPP_HIDE_FROM_ABI const_iterator find(const key_type& __k) const { return __tree_.find(__k); }
|
2023-02-14 00:56:09 +01:00
|
|
|
#if _LIBCPP_STD_VER >= 14
|
2023-09-01 17:52:02 -07:00
|
|
|
template <typename _K2, enable_if_t<__is_transparent<_Compare, _K2>::value, int> = 0>
|
2013-08-13 22:18:47 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI iterator find(const _K2& __k) {
|
|
|
|
return __tree_.find(__k);
|
|
|
|
}
|
2023-09-01 17:52:02 -07:00
|
|
|
template <typename _K2, enable_if_t<__is_transparent<_Compare, _K2>::value, int> = 0>
|
2013-08-13 22:18:47 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI const_iterator find(const _K2& __k) const {
|
|
|
|
return __tree_.find(__k);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2010-05-11 19:42:16 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI size_type count(const key_type& __k) const { return __tree_.__count_multi(__k); }
|
2023-02-14 00:56:09 +01:00
|
|
|
#if _LIBCPP_STD_VER >= 14
|
2023-09-01 17:52:02 -07:00
|
|
|
template <typename _K2, enable_if_t<__is_transparent<_Compare, _K2>::value, int> = 0>
|
2015-06-30 18:15:41 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI size_type count(const _K2& __k) const {
|
|
|
|
return __tree_.__count_multi(__k);
|
|
|
|
}
|
2014-08-24 23:54:16 +00:00
|
|
|
#endif
|
2019-07-16 03:21:01 +00:00
|
|
|
|
2023-02-14 00:56:09 +01:00
|
|
|
#if _LIBCPP_STD_VER >= 20
|
2019-07-16 03:21:01 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI bool contains(const key_type& __k) const { return find(__k) != end(); }
|
2023-09-01 17:52:02 -07:00
|
|
|
template <typename _K2, enable_if_t<__is_transparent<_Compare, _K2>::value, int> = 0>
|
2021-04-13 17:10:55 +02:00
|
|
|
_LIBCPP_HIDE_FROM_ABI bool contains(const _K2& __k) const {
|
|
|
|
return find(__k) != end();
|
|
|
|
}
|
2023-02-14 00:56:09 +01:00
|
|
|
#endif // _LIBCPP_STD_VER >= 20
|
2019-07-16 03:21:01 +00:00
|
|
|
|
2010-05-11 19:42:16 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI iterator lower_bound(const key_type& __k) { return __tree_.lower_bound(__k); }
|
|
|
|
_LIBCPP_HIDE_FROM_ABI const_iterator lower_bound(const key_type& __k) const { return __tree_.lower_bound(__k); }
|
2023-02-14 00:56:09 +01:00
|
|
|
#if _LIBCPP_STD_VER >= 14
|
2023-09-01 17:52:02 -07:00
|
|
|
template <typename _K2, enable_if_t<__is_transparent<_Compare, _K2>::value, int> = 0>
|
2013-08-13 22:18:47 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI iterator lower_bound(const _K2& __k) {
|
|
|
|
return __tree_.lower_bound(__k);
|
|
|
|
}
|
2023-12-18 14:01:33 -05:00
|
|
|
|
2023-09-01 17:52:02 -07:00
|
|
|
template <typename _K2, enable_if_t<__is_transparent<_Compare, _K2>::value, int> = 0>
|
2013-08-13 22:18:47 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI const_iterator lower_bound(const _K2& __k) const {
|
|
|
|
return __tree_.lower_bound(__k);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2010-05-11 19:42:16 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI iterator upper_bound(const key_type& __k) { return __tree_.upper_bound(__k); }
|
|
|
|
_LIBCPP_HIDE_FROM_ABI const_iterator upper_bound(const key_type& __k) const { return __tree_.upper_bound(__k); }
|
2023-02-14 00:56:09 +01:00
|
|
|
#if _LIBCPP_STD_VER >= 14
|
2023-09-01 17:52:02 -07:00
|
|
|
template <typename _K2, enable_if_t<__is_transparent<_Compare, _K2>::value, int> = 0>
|
2013-08-13 22:18:47 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI iterator upper_bound(const _K2& __k) {
|
|
|
|
return __tree_.upper_bound(__k);
|
|
|
|
}
|
2023-09-01 17:52:02 -07:00
|
|
|
template <typename _K2, enable_if_t<__is_transparent<_Compare, _K2>::value, int> = 0>
|
2013-08-13 22:18:47 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI const_iterator upper_bound(const _K2& __k) const {
|
|
|
|
return __tree_.upper_bound(__k);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2010-05-11 19:42:16 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI pair<iterator, iterator> equal_range(const key_type& __k) {
|
|
|
|
return __tree_.__equal_range_multi(__k);
|
|
|
|
}
|
|
|
|
_LIBCPP_HIDE_FROM_ABI pair<const_iterator, const_iterator> equal_range(const key_type& __k) const {
|
|
|
|
return __tree_.__equal_range_multi(__k);
|
|
|
|
}
|
2023-02-14 00:56:09 +01:00
|
|
|
#if _LIBCPP_STD_VER >= 14
|
2023-09-01 17:52:02 -07:00
|
|
|
template <typename _K2, enable_if_t<__is_transparent<_Compare, _K2>::value, int> = 0>
|
2013-08-13 22:18:47 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI pair<iterator, iterator> equal_range(const _K2& __k) {
|
|
|
|
return __tree_.__equal_range_multi(__k);
|
|
|
|
}
|
2023-09-01 17:52:02 -07:00
|
|
|
template <typename _K2, enable_if_t<__is_transparent<_Compare, _K2>::value, int> = 0>
|
|
|
|
_LIBCPP_HIDE_FROM_ABI pair<const_iterator, const_iterator> equal_range(const _K2& __k) const {
|
2013-08-13 22:18:47 +00:00
|
|
|
return __tree_.__equal_range_multi(__k);
|
|
|
|
}
|
|
|
|
#endif
|
2010-05-11 19:42:16 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
typedef typename __base::__node __node;
|
|
|
|
typedef typename __base::__node_allocator __node_allocator;
|
|
|
|
typedef typename __base::__node_pointer __node_pointer;
|
2016-02-20 07:12:17 +00:00
|
|
|
|
2011-11-29 18:15:50 +00:00
|
|
|
typedef __map_node_destructor<__node_allocator> _Dp;
|
|
|
|
typedef unique_ptr<__node, _Dp> __node_holder;
|
2010-05-11 19:42:16 +00:00
|
|
|
};
|
|
|
|
|
2021-08-17 11:59:07 -04:00
|
|
|
#if _LIBCPP_STD_VER >= 17
|
2019-06-20 19:32:00 +00:00
|
|
|
template <class _InputIterator,
|
|
|
|
class _Compare = less<__iter_key_type<_InputIterator>>,
|
|
|
|
class _Allocator = allocator<__iter_to_alloc_type<_InputIterator>>,
|
2023-05-17 10:34:51 -07:00
|
|
|
class = enable_if_t<__has_input_iterator_category<_InputIterator>::value, void>,
|
[libc++] Use enable_if_t instead of _EnableIf
I just ran into a compiler error involving __bind_back and some overloads
that were being disabled with _EnableIf. I noticed that the error message
was quite bad and did not mention the reason for the overload being
excluded. Specifically, the error looked like this:
candidate template ignored: substitution failure [with _Args =
<ContiguousView>]: no member named '_EnableIfImpl' in 'std::_MetaBase<false>'
Instead, when using enable_if or enable_if_t, the compiler is clever and
can produce better diagnostics, like so:
candidate template ignored: requirement 'is_invocable_v<
std::__bind_back_op<1, std::integer_sequence<unsigned long, 0>>,
std::ranges::views::__transform::__fn &, std::tuple<PlusOne> &,
ContiguousView>' was not satisfied [with _Args = <ContiguousView>]
Basically, it tries to do a poor man's implementation of concepts, which
is already a lot better than simply complaining about substitution failure.
Hence, this commit uses enable_if_t instead of _EnableIf whenever
possible. That is both more straightforward than using the internal
helper, and also leads to better error messages in those cases.
I understand the motivation for _EnableIf's implementation was to improve
compile-time performance, however I believe striving to improve error
messages is even more important for our QOI, hence this patch. Furthermore,
it is unclear that _EnableIf actually improved compile-time performance
in any noticeable way (see discussion in the review for details).
Differential Revision: https://reviews.llvm.org/D108216
2021-08-17 12:26:09 -04:00
|
|
|
class = enable_if_t<!__is_allocator<_Compare>::value, void>,
|
|
|
|
class = enable_if_t<__is_allocator<_Allocator>::value, void>>
|
2019-06-20 19:32:00 +00:00
|
|
|
multimap(_InputIterator, _InputIterator, _Compare = _Compare(), _Allocator = _Allocator())
|
|
|
|
-> multimap<__iter_key_type<_InputIterator>, __iter_mapped_type<_InputIterator>, _Compare, _Allocator>;
|
|
|
|
|
2023-07-10 17:16:56 -07:00
|
|
|
# if _LIBCPP_STD_VER >= 23
|
|
|
|
template <ranges::input_range _Range,
|
|
|
|
class _Compare = less<__range_key_type<_Range>>,
|
|
|
|
class _Allocator = allocator<__range_to_alloc_type<_Range>>,
|
|
|
|
class = enable_if_t<!__is_allocator<_Compare>::value, void>,
|
|
|
|
class = enable_if_t<__is_allocator<_Allocator>::value, void>>
|
|
|
|
multimap(from_range_t, _Range&&, _Compare = _Compare(), _Allocator = _Allocator())
|
|
|
|
-> multimap<__range_key_type<_Range>, __range_mapped_type<_Range>, _Compare, _Allocator>;
|
|
|
|
# endif
|
2023-12-18 14:01:33 -05:00
|
|
|
|
2019-06-20 19:32:00 +00:00
|
|
|
template <class _Key,
|
|
|
|
class _Tp,
|
|
|
|
class _Compare = less<remove_const_t<_Key>>,
|
|
|
|
class _Allocator = allocator<pair<const _Key, _Tp>>,
|
[libc++] Use enable_if_t instead of _EnableIf
I just ran into a compiler error involving __bind_back and some overloads
that were being disabled with _EnableIf. I noticed that the error message
was quite bad and did not mention the reason for the overload being
excluded. Specifically, the error looked like this:
candidate template ignored: substitution failure [with _Args =
<ContiguousView>]: no member named '_EnableIfImpl' in 'std::_MetaBase<false>'
Instead, when using enable_if or enable_if_t, the compiler is clever and
can produce better diagnostics, like so:
candidate template ignored: requirement 'is_invocable_v<
std::__bind_back_op<1, std::integer_sequence<unsigned long, 0>>,
std::ranges::views::__transform::__fn &, std::tuple<PlusOne> &,
ContiguousView>' was not satisfied [with _Args = <ContiguousView>]
Basically, it tries to do a poor man's implementation of concepts, which
is already a lot better than simply complaining about substitution failure.
Hence, this commit uses enable_if_t instead of _EnableIf whenever
possible. That is both more straightforward than using the internal
helper, and also leads to better error messages in those cases.
I understand the motivation for _EnableIf's implementation was to improve
compile-time performance, however I believe striving to improve error
messages is even more important for our QOI, hence this patch. Furthermore,
it is unclear that _EnableIf actually improved compile-time performance
in any noticeable way (see discussion in the review for details).
Differential Revision: https://reviews.llvm.org/D108216
2021-08-17 12:26:09 -04:00
|
|
|
class = enable_if_t<!__is_allocator<_Compare>::value, void>,
|
|
|
|
class = enable_if_t<__is_allocator<_Allocator>::value, void>>
|
2019-06-20 19:32:00 +00:00
|
|
|
multimap(initializer_list<pair<_Key, _Tp>>, _Compare = _Compare(), _Allocator = _Allocator())
|
|
|
|
-> multimap<remove_const_t<_Key>, _Tp, _Compare, _Allocator>;
|
|
|
|
|
|
|
|
template <class _InputIterator,
|
|
|
|
class _Allocator,
|
2023-05-17 10:34:51 -07:00
|
|
|
class = enable_if_t<__has_input_iterator_category<_InputIterator>::value, void>,
|
[libc++] Use enable_if_t instead of _EnableIf
I just ran into a compiler error involving __bind_back and some overloads
that were being disabled with _EnableIf. I noticed that the error message
was quite bad and did not mention the reason for the overload being
excluded. Specifically, the error looked like this:
candidate template ignored: substitution failure [with _Args =
<ContiguousView>]: no member named '_EnableIfImpl' in 'std::_MetaBase<false>'
Instead, when using enable_if or enable_if_t, the compiler is clever and
can produce better diagnostics, like so:
candidate template ignored: requirement 'is_invocable_v<
std::__bind_back_op<1, std::integer_sequence<unsigned long, 0>>,
std::ranges::views::__transform::__fn &, std::tuple<PlusOne> &,
ContiguousView>' was not satisfied [with _Args = <ContiguousView>]
Basically, it tries to do a poor man's implementation of concepts, which
is already a lot better than simply complaining about substitution failure.
Hence, this commit uses enable_if_t instead of _EnableIf whenever
possible. That is both more straightforward than using the internal
helper, and also leads to better error messages in those cases.
I understand the motivation for _EnableIf's implementation was to improve
compile-time performance, however I believe striving to improve error
messages is even more important for our QOI, hence this patch. Furthermore,
it is unclear that _EnableIf actually improved compile-time performance
in any noticeable way (see discussion in the review for details).
Differential Revision: https://reviews.llvm.org/D108216
2021-08-17 12:26:09 -04:00
|
|
|
class = enable_if_t<__is_allocator<_Allocator>::value, void>>
|
2019-06-20 19:32:00 +00:00
|
|
|
multimap(_InputIterator, _InputIterator, _Allocator)
|
|
|
|
-> multimap<__iter_key_type<_InputIterator>,
|
|
|
|
__iter_mapped_type<_InputIterator>,
|
|
|
|
less<__iter_key_type<_InputIterator>>,
|
|
|
|
_Allocator>;
|
|
|
|
|
2023-07-10 17:16:56 -07:00
|
|
|
# if _LIBCPP_STD_VER >= 23
|
|
|
|
template <ranges::input_range _Range, class _Allocator, class = enable_if_t<__is_allocator<_Allocator>::value, void>>
|
|
|
|
multimap(from_range_t, _Range&&, _Allocator)
|
|
|
|
-> multimap<__range_key_type<_Range>, __range_mapped_type<_Range>, less<__range_key_type<_Range>>, _Allocator>;
|
|
|
|
# endif
|
|
|
|
|
[libc++] Use enable_if_t instead of _EnableIf
I just ran into a compiler error involving __bind_back and some overloads
that were being disabled with _EnableIf. I noticed that the error message
was quite bad and did not mention the reason for the overload being
excluded. Specifically, the error looked like this:
candidate template ignored: substitution failure [with _Args =
<ContiguousView>]: no member named '_EnableIfImpl' in 'std::_MetaBase<false>'
Instead, when using enable_if or enable_if_t, the compiler is clever and
can produce better diagnostics, like so:
candidate template ignored: requirement 'is_invocable_v<
std::__bind_back_op<1, std::integer_sequence<unsigned long, 0>>,
std::ranges::views::__transform::__fn &, std::tuple<PlusOne> &,
ContiguousView>' was not satisfied [with _Args = <ContiguousView>]
Basically, it tries to do a poor man's implementation of concepts, which
is already a lot better than simply complaining about substitution failure.
Hence, this commit uses enable_if_t instead of _EnableIf whenever
possible. That is both more straightforward than using the internal
helper, and also leads to better error messages in those cases.
I understand the motivation for _EnableIf's implementation was to improve
compile-time performance, however I believe striving to improve error
messages is even more important for our QOI, hence this patch. Furthermore,
it is unclear that _EnableIf actually improved compile-time performance
in any noticeable way (see discussion in the review for details).
Differential Revision: https://reviews.llvm.org/D108216
2021-08-17 12:26:09 -04:00
|
|
|
template <class _Key, class _Tp, class _Allocator, class = enable_if_t<__is_allocator<_Allocator>::value, void>>
|
2019-06-20 19:32:00 +00:00
|
|
|
multimap(initializer_list<pair<_Key, _Tp>>, _Allocator)
|
|
|
|
-> multimap<remove_const_t<_Key>, _Tp, less<remove_const_t<_Key>>, _Allocator>;
|
|
|
|
#endif
|
|
|
|
|
2016-03-31 02:15:15 +00:00
|
|
|
#ifndef _LIBCPP_CXX03_LANG
|
2010-05-11 19:42:16 +00:00
|
|
|
template <class _Key, class _Tp, class _Compare, class _Allocator>
|
|
|
|
multimap<_Key, _Tp, _Compare, _Allocator>::multimap(multimap&& __m, const allocator_type& __a)
|
2016-08-17 05:58:40 +00:00
|
|
|
: __tree_(std::move(__m.__tree_), typename __base::allocator_type(__a)) {
|
2010-05-11 19:42:16 +00:00
|
|
|
if (__a != __m.get_allocator()) {
|
|
|
|
const_iterator __e = cend();
|
|
|
|
while (!__m.empty())
|
2018-06-04 20:38:23 +00:00
|
|
|
__tree_.__insert_multi(__e.__i_, std::move(__m.__tree_.remove(__m.begin().__i_)->__value_.__move()));
|
2010-05-11 19:42:16 +00:00
|
|
|
}
|
|
|
|
}
|
2016-03-31 02:15:15 +00:00
|
|
|
#endif
|
2010-05-11 19:42:16 +00:00
|
|
|
|
|
|
|
template <class _Key, class _Tp, class _Compare, class _Allocator>
|
2010-09-22 16:48:34 +00:00
|
|
|
inline _LIBCPP_HIDE_FROM_ABI bool
|
2010-05-11 19:42:16 +00:00
|
|
|
operator==(const multimap<_Key, _Tp, _Compare, _Allocator>& __x, const multimap<_Key, _Tp, _Compare, _Allocator>& __y) {
|
2011-06-30 21:18:19 +00:00
|
|
|
return __x.size() == __y.size() && std::equal(__x.begin(), __x.end(), __y.begin());
|
2010-05-11 19:42:16 +00:00
|
|
|
}
|
|
|
|
|
2023-03-15 15:23:53 +01:00
|
|
|
#if _LIBCPP_STD_VER <= 17
|
|
|
|
|
2010-05-11 19:42:16 +00:00
|
|
|
template <class _Key, class _Tp, class _Compare, class _Allocator>
|
2010-09-22 16:48:34 +00:00
|
|
|
inline _LIBCPP_HIDE_FROM_ABI bool
|
2010-05-11 19:42:16 +00:00
|
|
|
operator<(const multimap<_Key, _Tp, _Compare, _Allocator>& __x, const multimap<_Key, _Tp, _Compare, _Allocator>& __y) {
|
2011-06-30 21:18:19 +00:00
|
|
|
return std::lexicographical_compare(__x.begin(), __x.end(), __y.begin(), __y.end());
|
2010-05-11 19:42:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
template <class _Key, class _Tp, class _Compare, class _Allocator>
|
2010-09-22 16:48:34 +00:00
|
|
|
inline _LIBCPP_HIDE_FROM_ABI bool
|
2010-05-11 19:42:16 +00:00
|
|
|
operator!=(const multimap<_Key, _Tp, _Compare, _Allocator>& __x, const multimap<_Key, _Tp, _Compare, _Allocator>& __y) {
|
|
|
|
return !(__x == __y);
|
|
|
|
}
|
|
|
|
|
|
|
|
template <class _Key, class _Tp, class _Compare, class _Allocator>
|
2010-09-22 16:48:34 +00:00
|
|
|
inline _LIBCPP_HIDE_FROM_ABI bool
|
2010-05-11 19:42:16 +00:00
|
|
|
operator>(const multimap<_Key, _Tp, _Compare, _Allocator>& __x, const multimap<_Key, _Tp, _Compare, _Allocator>& __y) {
|
|
|
|
return __y < __x;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <class _Key, class _Tp, class _Compare, class _Allocator>
|
2010-09-22 16:48:34 +00:00
|
|
|
inline _LIBCPP_HIDE_FROM_ABI bool
|
2010-05-11 19:42:16 +00:00
|
|
|
operator>=(const multimap<_Key, _Tp, _Compare, _Allocator>& __x, const multimap<_Key, _Tp, _Compare, _Allocator>& __y) {
|
|
|
|
return !(__x < __y);
|
|
|
|
}
|
|
|
|
|
|
|
|
template <class _Key, class _Tp, class _Compare, class _Allocator>
|
2010-09-22 16:48:34 +00:00
|
|
|
inline _LIBCPP_HIDE_FROM_ABI bool
|
2010-05-11 19:42:16 +00:00
|
|
|
operator<=(const multimap<_Key, _Tp, _Compare, _Allocator>& __x, const multimap<_Key, _Tp, _Compare, _Allocator>& __y) {
|
|
|
|
return !(__y < __x);
|
|
|
|
}
|
|
|
|
|
2023-03-15 15:23:53 +01:00
|
|
|
#else // #if _LIBCPP_STD_VER <= 17
|
|
|
|
|
2023-05-23 23:03:35 +03:00
|
|
|
template <class _Key, class _Tp, class _Compare, class _Allocator>
|
|
|
|
_LIBCPP_HIDE_FROM_ABI __synth_three_way_result<pair<const _Key, _Tp>>
|
2023-03-15 15:23:53 +01:00
|
|
|
operator<=>(const multimap<_Key, _Tp, _Compare, _Allocator>& __x,
|
2023-05-23 23:03:35 +03:00
|
|
|
const multimap<_Key, _Tp, _Compare, _Allocator>& __y) {
|
2023-03-15 15:23:53 +01:00
|
|
|
return std::lexicographical_compare_three_way(
|
2023-03-21 18:05:35 +01:00
|
|
|
__x.begin(),
|
|
|
|
__x.end(),
|
|
|
|
__y.begin(),
|
|
|
|
__y.end(),
|
|
|
|
std::__synth_three_way<pair<const _Key, _Tp>, pair<const _Key, _Tp>>);
|
2023-03-15 15:23:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif // #if _LIBCPP_STD_VER <= 17
|
|
|
|
|
2010-05-11 19:42:16 +00:00
|
|
|
template <class _Key, class _Tp, class _Compare, class _Allocator>
|
2010-09-22 16:48:34 +00:00
|
|
|
inline _LIBCPP_HIDE_FROM_ABI void
|
2010-05-11 19:42:16 +00:00
|
|
|
swap(multimap<_Key, _Tp, _Compare, _Allocator>& __x, multimap<_Key, _Tp, _Compare, _Allocator>& __y)
|
2011-06-04 14:31:57 +00:00
|
|
|
_NOEXCEPT_(_NOEXCEPT_(__x.swap(__y))) {
|
2010-05-11 19:42:16 +00:00
|
|
|
__x.swap(__y);
|
|
|
|
}
|
|
|
|
|
2023-02-14 00:56:09 +01:00
|
|
|
#if _LIBCPP_STD_VER >= 20
|
2020-05-02 13:58:03 +02:00
|
|
|
template <class _Key, class _Tp, class _Compare, class _Allocator, class _Predicate>
|
|
|
|
inline _LIBCPP_HIDE_FROM_ABI typename multimap<_Key, _Tp, _Compare, _Allocator>::size_type
|
|
|
|
erase_if(multimap<_Key, _Tp, _Compare, _Allocator>& __c, _Predicate __pred) {
|
2021-03-21 16:53:09 -04:00
|
|
|
return std::__libcpp_erase_if_container(__c, __pred);
|
2020-05-02 13:58:03 +02:00
|
|
|
}
|
2018-12-14 18:49:35 +00:00
|
|
|
#endif
|
|
|
|
|
2010-05-11 19:42:16 +00:00
|
|
|
_LIBCPP_END_NAMESPACE_STD
|
|
|
|
|
2023-02-14 00:56:09 +01:00
|
|
|
#if _LIBCPP_STD_VER >= 17
|
2022-10-06 16:53:30 -04:00
|
|
|
_LIBCPP_BEGIN_NAMESPACE_STD
|
|
|
|
namespace pmr {
|
|
|
|
template <class _KeyT, class _ValueT, class _CompareT = std::less<_KeyT>>
|
2023-03-29 16:48:20 -04:00
|
|
|
using map _LIBCPP_AVAILABILITY_PMR =
|
|
|
|
std::map<_KeyT, _ValueT, _CompareT, polymorphic_allocator<std::pair<const _KeyT, _ValueT>>>;
|
2022-10-06 16:53:30 -04:00
|
|
|
|
|
|
|
template <class _KeyT, class _ValueT, class _CompareT = std::less<_KeyT>>
|
2023-03-29 16:48:20 -04:00
|
|
|
using multimap _LIBCPP_AVAILABILITY_PMR =
|
|
|
|
std::multimap<_KeyT, _ValueT, _CompareT, polymorphic_allocator<std::pair<const _KeyT, _ValueT>>>;
|
2022-10-06 16:53:30 -04:00
|
|
|
} // namespace pmr
|
|
|
|
_LIBCPP_END_NAMESPACE_STD
|
|
|
|
#endif
|
|
|
|
|
[libc++] Fix missing and incorrect push/pop macros (#79204)
We recently noticed that the unwrap_iter.h file was pushing macros, but
it was pushing them again instead of popping them at the end of the
file. This led to libc++ basically swallowing any custom definition of
these macros in user code:
#define min HELLO
#include <algorithm>
// min is not HELLO anymore, it's not defined
While investigating this issue, I noticed that our push/pop pragmas were
actually entirely wrong too. Indeed, instead of pushing macros like
`move`, we'd push `move(int, int)` in the pragma, which is not a valid
macro name. As a result, we would not actually push macros like `move`
-- instead we'd simply undefine them. This led to the following code not
working:
#define move HELLO
#include <algorithm>
// move is not HELLO anymore
Fixing the pragma push/pop incantations led to a cascade of issues
because we use identifiers like `move` in a large number of places, and
all of these headers would now need to do the push/pop dance.
This patch fixes all these issues. First, it adds a check that we don't
swallow important names like min, max, move or refresh as explained
above. This is done by augmenting the existing
system_reserved_names.gen.py test to also check that the macros are what
we expect after including each header.
Second, it fixes the push/pop pragmas to work properly and adds missing
pragmas to all the files I could detect a failure in via the newly added
test.
rdar://121365472
2024-01-25 15:48:46 -05:00
|
|
|
_LIBCPP_POP_MACROS
|
|
|
|
|
2022-09-02 17:53:28 +02:00
|
|
|
#if !defined(_LIBCPP_REMOVE_TRANSITIVE_INCLUDES) && _LIBCPP_STD_VER <= 20
|
2022-11-02 20:27:42 +01:00
|
|
|
# include <concepts>
|
2023-01-08 16:47:53 +01:00
|
|
|
# include <cstdlib>
|
2022-09-02 17:53:28 +02:00
|
|
|
# include <functional>
|
|
|
|
# include <iterator>
|
2023-02-12 12:32:36 +01:00
|
|
|
# include <type_traits>
|
2022-09-02 17:53:28 +02:00
|
|
|
# include <utility>
|
|
|
|
#endif
|
|
|
|
|
2021-04-20 12:03:32 -04:00
|
|
|
#endif // _LIBCPP_MAP
|