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_SET
|
|
|
|
#define _LIBCPP_SET
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
|
|
|
set synopsis
|
|
|
|
|
|
|
|
namespace std
|
|
|
|
{
|
|
|
|
|
|
|
|
template <class Key, class Compare = less<Key>,
|
|
|
|
class Allocator = allocator<Key>>
|
|
|
|
class set
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
// types:
|
|
|
|
typedef Key key_type;
|
|
|
|
typedef key_type value_type;
|
|
|
|
typedef Compare key_compare;
|
|
|
|
typedef key_compare value_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
|
|
|
|
typedef INSERT_RETURN_TYPE<iterator, node_type> insert_return_type; // C++17
|
2010-05-11 19:42:16 +00:00
|
|
|
|
|
|
|
// construct/copy/destroy:
|
2011-06-04 15:22:34 +00:00
|
|
|
set()
|
|
|
|
noexcept(
|
|
|
|
is_nothrow_default_constructible<allocator_type>::value &&
|
|
|
|
is_nothrow_default_constructible<key_compare>::value &&
|
|
|
|
is_nothrow_copy_constructible<key_compare>::value);
|
|
|
|
explicit set(const value_compare& comp);
|
2010-05-11 19:42:16 +00:00
|
|
|
set(const value_compare& comp, const allocator_type& a);
|
|
|
|
template <class InputIterator>
|
|
|
|
set(InputIterator first, InputIterator last,
|
|
|
|
const value_compare& comp = value_compare());
|
|
|
|
template <class InputIterator>
|
|
|
|
set(InputIterator first, InputIterator last, const value_compare& comp,
|
|
|
|
const allocator_type& a);
|
2023-07-10 17:16:56 -07:00
|
|
|
template<container-compatible-range<value_type> R>
|
|
|
|
set(from_range_t, R&& rg, const Compare& comp = Compare(), const Allocator& = Allocator()); // C++23
|
2010-05-11 19:42:16 +00:00
|
|
|
set(const set& s);
|
2011-06-04 15:22:34 +00:00
|
|
|
set(set&& s)
|
|
|
|
noexcept(
|
|
|
|
is_nothrow_move_constructible<allocator_type>::value &&
|
|
|
|
is_nothrow_move_constructible<key_compare>::value);
|
2010-05-11 19:42:16 +00:00
|
|
|
explicit set(const allocator_type& a);
|
|
|
|
set(const set& s, const allocator_type& a);
|
|
|
|
set(set&& s, const allocator_type& a);
|
|
|
|
set(initializer_list<value_type> il, const value_compare& comp = value_compare());
|
|
|
|
set(initializer_list<value_type> il, const value_compare& comp,
|
|
|
|
const allocator_type& a);
|
2013-09-11 00:06:45 +00:00
|
|
|
template <class InputIterator>
|
|
|
|
set(InputIterator first, InputIterator last, const allocator_type& a)
|
|
|
|
: set(first, last, Compare(), a) {} // C++14
|
2023-07-10 17:16:56 -07:00
|
|
|
template<container-compatible-range<value_type> R>
|
|
|
|
set(from_range_t, R&& rg, const Allocator& a))
|
|
|
|
: set(from_range, std::forward<R>(rg), Compare(), a) { } // C++23
|
2013-09-11 00:06:45 +00:00
|
|
|
set(initializer_list<value_type> il, const allocator_type& a)
|
|
|
|
: set(il, Compare(), a) {} // C++14
|
2010-05-11 19:42:16 +00:00
|
|
|
~set();
|
|
|
|
|
|
|
|
set& operator=(const set& s);
|
2011-06-04 15:22:34 +00:00
|
|
|
set& operator=(set&& s)
|
|
|
|
noexcept(
|
|
|
|
allocator_type::propagate_on_container_move_assignment::value &&
|
|
|
|
is_nothrow_move_assignable<allocator_type>::value &&
|
|
|
|
is_nothrow_move_assignable<key_compare>::value);
|
2010-05-11 19:42:16 +00:00
|
|
|
set& 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>
|
|
|
|
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);
|
|
|
|
pair<iterator,bool> insert(value_type&& v);
|
|
|
|
iterator insert(const_iterator position, const value_type& v);
|
|
|
|
iterator insert(const_iterator position, value_type&& v);
|
|
|
|
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
|
|
|
|
|
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(set<Key, C2, Allocator>& source); // C++17
|
|
|
|
template<class C2>
|
|
|
|
void merge(set<Key, C2, Allocator>&& source); // C++17
|
|
|
|
template<class C2>
|
|
|
|
void merge(multiset<Key, C2, Allocator>& source); // C++17
|
|
|
|
template<class C2>
|
|
|
|
void merge(multiset<Key, C2, Allocator>&& source); // C++17
|
|
|
|
|
2011-06-04 15:22:34 +00:00
|
|
|
void swap(set& s)
|
|
|
|
noexcept(
|
|
|
|
__is_nothrow_swappable<key_compare>::value &&
|
|
|
|
(!allocator_type::propagate_on_container_swap::value ||
|
|
|
|
__is_nothrow_swappable<allocator_type>::value));
|
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;
|
|
|
|
|
|
|
|
// set operations:
|
|
|
|
iterator find(const key_type& k);
|
|
|
|
const_iterator find(const key_type& k) const;
|
2013-08-13 01:11:06 +00:00
|
|
|
template<typename K>
|
|
|
|
iterator find(const K& x);
|
|
|
|
template<typename K>
|
|
|
|
const_iterator find(const K& x) const; // C++14
|
2021-04-13 17:10:55 +02:00
|
|
|
|
2013-08-13 01:11:06 +00:00
|
|
|
template<typename K>
|
2019-07-16 03:21:01 +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 01:11:06 +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 01:11:06 +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 01:11:06 +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<typename iterator_traits<InputIterator>::value_type>,
|
|
|
|
class Allocator = allocator<typename iterator_traits<InputIterator>::value_type>>
|
|
|
|
set(InputIterator, InputIterator,
|
|
|
|
Compare = Compare(), Allocator = Allocator())
|
|
|
|
-> set<typename iterator_traits<InputIterator>::value_type, Compare, Allocator>; // C++17
|
|
|
|
|
2023-07-10 17:16:56 -07:00
|
|
|
template<ranges::input_range R, class Compare = less<ranges::range_value_t<R>>,
|
|
|
|
class Allocator = allocator<ranges::range_value_t<R>>>
|
|
|
|
set(from_range_t, R&&, Compare = Compare(), Allocator = Allocator())
|
|
|
|
-> set<ranges::range_value_t<R>, Compare, Allocator>; // C++23
|
|
|
|
|
2021-11-09 09:21:02 -08:00
|
|
|
template<class Key, class Compare = less<Key>, class Allocator = allocator<Key>>
|
|
|
|
set(initializer_list<Key>, Compare = Compare(), Allocator = Allocator())
|
|
|
|
-> set<Key, Compare, Allocator>; // C++17
|
|
|
|
|
|
|
|
template<class InputIterator, class Allocator>
|
|
|
|
set(InputIterator, InputIterator, Allocator)
|
|
|
|
-> set<typename iterator_traits<InputIterator>::value_type,
|
|
|
|
less<typename iterator_traits<InputIterator>::value_type>, Allocator>; // C++17
|
|
|
|
|
2023-07-10 17:16:56 -07:00
|
|
|
template<ranges::input_range R, class Allocator>
|
|
|
|
set(from_range_t, R&&, Allocator)
|
|
|
|
-> set<ranges::range_value_t<R>, less<ranges::range_value_t<R>>, Allocator>; // C++23
|
|
|
|
|
2021-11-09 09:21:02 -08:00
|
|
|
template<class Key, class Allocator>
|
|
|
|
set(initializer_list<Key>, Allocator) -> set<Key, less<Key>, Allocator>; // C++17
|
|
|
|
|
2010-05-11 19:42:16 +00:00
|
|
|
template <class Key, class Compare, class Allocator>
|
|
|
|
bool
|
|
|
|
operator==(const set<Key, Compare, Allocator>& x,
|
|
|
|
const set<Key, Compare, Allocator>& y);
|
|
|
|
|
|
|
|
template <class Key, class Compare, class Allocator>
|
|
|
|
bool
|
|
|
|
operator< (const set<Key, Compare, Allocator>& x,
|
2023-05-22 23:33:45 +03:00
|
|
|
const set<Key, Compare, Allocator>& y); // removed in C++20
|
2010-05-11 19:42:16 +00:00
|
|
|
|
|
|
|
template <class Key, class Compare, class Allocator>
|
|
|
|
bool
|
|
|
|
operator!=(const set<Key, Compare, Allocator>& x,
|
2023-05-22 23:33:45 +03:00
|
|
|
const set<Key, Compare, Allocator>& y); // removed in C++20
|
2010-05-11 19:42:16 +00:00
|
|
|
|
|
|
|
template <class Key, class Compare, class Allocator>
|
|
|
|
bool
|
|
|
|
operator> (const set<Key, Compare, Allocator>& x,
|
2023-05-22 23:33:45 +03:00
|
|
|
const set<Key, Compare, Allocator>& y); // removed in C++20
|
2010-05-11 19:42:16 +00:00
|
|
|
|
|
|
|
template <class Key, class Compare, class Allocator>
|
|
|
|
bool
|
|
|
|
operator>=(const set<Key, Compare, Allocator>& x,
|
2023-05-22 23:33:45 +03:00
|
|
|
const set<Key, Compare, Allocator>& y); // removed in C++20
|
2010-05-11 19:42:16 +00:00
|
|
|
|
|
|
|
template <class Key, class Compare, class Allocator>
|
|
|
|
bool
|
|
|
|
operator<=(const set<Key, Compare, Allocator>& x,
|
2023-05-22 23:33:45 +03:00
|
|
|
const set<Key, Compare, Allocator>& y); // removed in C++20
|
|
|
|
|
|
|
|
template<class Key, class Compare, class Allocator>
|
|
|
|
synth-three-way-result<Key> operator<=>(const set<Key, Compare, Allocator>& x,
|
|
|
|
const set<Key, Compare, Allocator>& y); // since C++20
|
2010-05-11 19:42:16 +00:00
|
|
|
|
|
|
|
// specialized algorithms:
|
|
|
|
template <class Key, class Compare, class Allocator>
|
|
|
|
void
|
2011-06-04 15:22:34 +00:00
|
|
|
swap(set<Key, Compare, Allocator>& x, set<Key, 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 Compare, class Allocator, class Predicate>
|
2020-05-02 13:58:03 +02:00
|
|
|
typename set<Key, Compare, Allocator>::size_type
|
|
|
|
erase_if(set<Key, 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 Compare = less<Key>,
|
|
|
|
class Allocator = allocator<Key>>
|
|
|
|
class multiset
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
// types:
|
|
|
|
typedef Key key_type;
|
|
|
|
typedef key_type value_type;
|
|
|
|
typedef Compare key_compare;
|
|
|
|
typedef key_compare value_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
|
|
|
|
|
|
|
// construct/copy/destroy:
|
2011-06-04 15:22:34 +00:00
|
|
|
multiset()
|
|
|
|
noexcept(
|
|
|
|
is_nothrow_default_constructible<allocator_type>::value &&
|
|
|
|
is_nothrow_default_constructible<key_compare>::value &&
|
|
|
|
is_nothrow_copy_constructible<key_compare>::value);
|
|
|
|
explicit multiset(const value_compare& comp);
|
2010-05-11 19:42:16 +00:00
|
|
|
multiset(const value_compare& comp, const allocator_type& a);
|
|
|
|
template <class InputIterator>
|
|
|
|
multiset(InputIterator first, InputIterator last,
|
|
|
|
const value_compare& comp = value_compare());
|
|
|
|
template <class InputIterator>
|
|
|
|
multiset(InputIterator first, InputIterator last,
|
|
|
|
const value_compare& comp, const allocator_type& a);
|
2023-07-10 17:16:56 -07:00
|
|
|
template<container-compatible-range<value_type> R>
|
|
|
|
multiset(from_range_t, R&& rg,
|
|
|
|
const Compare& comp = Compare(), const Allocator& = Allocator()); // C++23
|
2010-05-11 19:42:16 +00:00
|
|
|
multiset(const multiset& s);
|
2011-06-04 15:22:34 +00:00
|
|
|
multiset(multiset&& s)
|
|
|
|
noexcept(
|
|
|
|
is_nothrow_move_constructible<allocator_type>::value &&
|
|
|
|
is_nothrow_move_constructible<key_compare>::value);
|
2010-05-11 19:42:16 +00:00
|
|
|
explicit multiset(const allocator_type& a);
|
|
|
|
multiset(const multiset& s, const allocator_type& a);
|
|
|
|
multiset(multiset&& s, const allocator_type& a);
|
|
|
|
multiset(initializer_list<value_type> il, const value_compare& comp = value_compare());
|
|
|
|
multiset(initializer_list<value_type> il, const value_compare& comp,
|
|
|
|
const allocator_type& a);
|
2013-09-11 00:06:45 +00:00
|
|
|
template <class InputIterator>
|
|
|
|
multiset(InputIterator first, InputIterator last, const allocator_type& a)
|
|
|
|
: set(first, last, Compare(), a) {} // C++14
|
2023-07-10 17:16:56 -07:00
|
|
|
template<container-compatible-range<value_type> R>
|
|
|
|
multiset(from_range_t, R&& rg, const Allocator& a))
|
|
|
|
: multiset(from_range, std::forward<R>(rg), Compare(), a) { } // C++23
|
2013-09-11 00:06:45 +00:00
|
|
|
multiset(initializer_list<value_type> il, const allocator_type& a)
|
|
|
|
: set(il, Compare(), a) {} // C++14
|
2010-05-11 19:42:16 +00:00
|
|
|
~multiset();
|
|
|
|
|
|
|
|
multiset& operator=(const multiset& s);
|
2011-06-04 15:22:34 +00:00
|
|
|
multiset& operator=(multiset&& s)
|
|
|
|
noexcept(
|
|
|
|
allocator_type::propagate_on_container_move_assignment::value &&
|
|
|
|
is_nothrow_move_assignable<allocator_type>::value &&
|
|
|
|
is_nothrow_move_assignable<key_compare>::value);
|
2010-05-11 19:42:16 +00:00
|
|
|
multiset& 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);
|
|
|
|
iterator insert(value_type&& v);
|
|
|
|
iterator insert(const_iterator position, const value_type& v);
|
|
|
|
iterator insert(const_iterator position, value_type&& v);
|
|
|
|
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(multiset<Key, C2, Allocator>& source); // C++17
|
|
|
|
template<class C2>
|
|
|
|
void merge(multiset<Key, C2, Allocator>&& source); // C++17
|
|
|
|
template<class C2>
|
|
|
|
void merge(set<Key, C2, Allocator>& source); // C++17
|
|
|
|
template<class C2>
|
|
|
|
void merge(set<Key, C2, Allocator>&& source); // C++17
|
|
|
|
|
2011-06-04 15:22:34 +00:00
|
|
|
void swap(multiset& s)
|
|
|
|
noexcept(
|
|
|
|
__is_nothrow_swappable<key_compare>::value &&
|
|
|
|
(!allocator_type::propagate_on_container_swap::value ||
|
|
|
|
__is_nothrow_swappable<allocator_type>::value));
|
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;
|
|
|
|
|
|
|
|
// set operations:
|
|
|
|
iterator find(const key_type& k);
|
|
|
|
const_iterator find(const key_type& k) const;
|
2013-08-13 01:11:06 +00:00
|
|
|
template<typename K>
|
|
|
|
iterator find(const K& x);
|
|
|
|
template<typename K>
|
|
|
|
const_iterator find(const K& x) const; // C++14
|
2021-04-13 17:10:55 +02:00
|
|
|
|
2019-07-16 03:21:01 +00:00
|
|
|
template<typename K>
|
|
|
|
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 01:11:06 +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 01:11:06 +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 01:11:06 +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<typename iterator_traits<InputIterator>::value_type>,
|
|
|
|
class Allocator = allocator<typename iterator_traits<InputIterator>::value_type>>
|
|
|
|
multiset(InputIterator, InputIterator,
|
|
|
|
Compare = Compare(), Allocator = Allocator())
|
|
|
|
-> multiset<typename iterator_traits<InputIterator>::value_type, Compare, Allocator>; // C++17
|
|
|
|
|
2023-07-10 17:16:56 -07:00
|
|
|
template<ranges::input_range R, class Compare = less<ranges::range_value_t<R>>,
|
|
|
|
class Allocator = allocator<ranges::range_value_t<R>>>
|
|
|
|
multiset(from_range_t, R&&, Compare = Compare(), Allocator = Allocator())
|
|
|
|
-> multiset<ranges::range_value_t<R>, Compare, Allocator>;
|
|
|
|
|
2021-11-09 09:21:02 -08:00
|
|
|
template<class Key, class Compare = less<Key>, class Allocator = allocator<Key>>
|
|
|
|
multiset(initializer_list<Key>, Compare = Compare(), Allocator = Allocator())
|
|
|
|
-> multiset<Key, Compare, Allocator>; // C++17
|
|
|
|
|
|
|
|
template<class InputIterator, class Allocator>
|
|
|
|
multiset(InputIterator, InputIterator, Allocator)
|
|
|
|
-> multiset<typename iterator_traits<InputIterator>::value_type,
|
|
|
|
less<typename iterator_traits<InputIterator>::value_type>, Allocator>; // C++17
|
|
|
|
|
2023-07-10 17:16:56 -07:00
|
|
|
template<ranges::input_range R, class Allocator>
|
|
|
|
multiset(from_range_t, R&&, Allocator)
|
|
|
|
-> multiset<ranges::range_value_t<R>, less<ranges::range_value_t<R>>, Allocator>;
|
|
|
|
|
2021-11-09 09:21:02 -08:00
|
|
|
template<class Key, class Allocator>
|
|
|
|
multiset(initializer_list<Key>, Allocator) -> multiset<Key, less<Key>, Allocator>; // C++17
|
|
|
|
|
2010-05-11 19:42:16 +00:00
|
|
|
template <class Key, class Compare, class Allocator>
|
|
|
|
bool
|
|
|
|
operator==(const multiset<Key, Compare, Allocator>& x,
|
|
|
|
const multiset<Key, Compare, Allocator>& y);
|
|
|
|
|
|
|
|
template <class Key, class Compare, class Allocator>
|
|
|
|
bool
|
|
|
|
operator< (const multiset<Key, Compare, Allocator>& x,
|
2023-05-22 23:33:45 +03:00
|
|
|
const multiset<Key, Compare, Allocator>& y); // removed in C++20
|
2010-05-11 19:42:16 +00:00
|
|
|
|
|
|
|
template <class Key, class Compare, class Allocator>
|
|
|
|
bool
|
|
|
|
operator!=(const multiset<Key, Compare, Allocator>& x,
|
2023-05-22 23:33:45 +03:00
|
|
|
const multiset<Key, Compare, Allocator>& y); // removed in C++20
|
2010-05-11 19:42:16 +00:00
|
|
|
|
|
|
|
template <class Key, class Compare, class Allocator>
|
|
|
|
bool
|
|
|
|
operator> (const multiset<Key, Compare, Allocator>& x,
|
2023-05-22 23:33:45 +03:00
|
|
|
const multiset<Key, Compare, Allocator>& y); // removed in C++20
|
2010-05-11 19:42:16 +00:00
|
|
|
|
|
|
|
template <class Key, class Compare, class Allocator>
|
|
|
|
bool
|
|
|
|
operator>=(const multiset<Key, Compare, Allocator>& x,
|
2023-05-22 23:33:45 +03:00
|
|
|
const multiset<Key, Compare, Allocator>& y); // removed in C++20
|
2010-05-11 19:42:16 +00:00
|
|
|
|
|
|
|
template <class Key, class Compare, class Allocator>
|
|
|
|
bool
|
|
|
|
operator<=(const multiset<Key, Compare, Allocator>& x,
|
2023-05-22 23:33:45 +03:00
|
|
|
const multiset<Key, Compare, Allocator>& y); // removed in C++20
|
|
|
|
|
|
|
|
template<class Key, class Compare, class Allocator>
|
|
|
|
synth-three-way-result<Key> operator<=>(const multiset<Key, Compare, Allocator>& x,
|
|
|
|
const multiset<Key, Compare, Allocator>& y); // since C++20
|
2010-05-11 19:42:16 +00:00
|
|
|
|
|
|
|
// specialized algorithms:
|
|
|
|
template <class Key, class Compare, class Allocator>
|
|
|
|
void
|
2011-06-04 15:22:34 +00:00
|
|
|
swap(multiset<Key, Compare, Allocator>& x, multiset<Key, 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 Compare, class Allocator, class Predicate>
|
2020-05-02 13:58:03 +02:00
|
|
|
typename multiset<Key, Compare, Allocator>::size_type
|
|
|
|
erase_if(multiset<Key, Compare, Allocator>& c, Predicate pred); // C++20
|
2018-12-14 18:49:35 +00:00
|
|
|
|
2010-05-11 19:42:16 +00:00
|
|
|
} // std
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2024-12-21 13:01:48 +01:00
|
|
|
#if __cplusplus < 201103L && defined(_LIBCPP_USE_FROZEN_CXX03_HEADERS)
|
|
|
|
# include <__cxx03/set>
|
|
|
|
#else
|
2024-12-10 16:02:12 +01:00
|
|
|
# include <__algorithm/equal.h>
|
|
|
|
# include <__algorithm/lexicographical_compare.h>
|
|
|
|
# include <__algorithm/lexicographical_compare_three_way.h>
|
|
|
|
# include <__assert>
|
|
|
|
# include <__config>
|
|
|
|
# include <__functional/is_transparent.h>
|
|
|
|
# include <__functional/operations.h>
|
|
|
|
# include <__iterator/erase_if_container.h>
|
|
|
|
# include <__iterator/iterator_traits.h>
|
|
|
|
# include <__iterator/ranges_iterator_traits.h>
|
|
|
|
# include <__iterator/reverse_iterator.h>
|
|
|
|
# include <__memory/allocator.h>
|
|
|
|
# include <__memory/allocator_traits.h>
|
|
|
|
# include <__memory_resource/polymorphic_allocator.h>
|
|
|
|
# include <__node_handle>
|
|
|
|
# include <__ranges/concepts.h>
|
|
|
|
# include <__ranges/container_compatible_range.h>
|
|
|
|
# include <__ranges/from_range.h>
|
|
|
|
# include <__tree>
|
|
|
|
# include <__type_traits/container_traits.h>
|
|
|
|
# include <__type_traits/enable_if.h>
|
|
|
|
# include <__type_traits/is_allocator.h>
|
|
|
|
# include <__type_traits/is_nothrow_assignable.h>
|
|
|
|
# include <__type_traits/is_nothrow_constructible.h>
|
|
|
|
# include <__type_traits/is_same.h>
|
|
|
|
# include <__type_traits/is_swappable.h>
|
|
|
|
# include <__type_traits/type_identity.h>
|
|
|
|
# include <__utility/forward.h>
|
|
|
|
# include <__utility/move.h>
|
|
|
|
# include <__utility/pair.h>
|
|
|
|
# include <version>
|
2022-06-16 22:43:46 +02:00
|
|
|
|
|
|
|
// standard-mandated includes
|
|
|
|
|
|
|
|
// [iterator.range]
|
2024-12-10 16:02:12 +01:00
|
|
|
# include <__iterator/access.h>
|
|
|
|
# include <__iterator/data.h>
|
|
|
|
# include <__iterator/empty.h>
|
|
|
|
# include <__iterator/reverse_access.h>
|
|
|
|
# include <__iterator/size.h>
|
2022-06-16 22:43:46 +02:00
|
|
|
|
|
|
|
// [associative.set.syn]
|
2024-12-10 16:02:12 +01:00
|
|
|
# include <compare>
|
|
|
|
# include <initializer_list>
|
2010-05-11 19:42:16 +00:00
|
|
|
|
2024-12-10 16:02:12 +01:00
|
|
|
# if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
|
|
|
|
# pragma GCC system_header
|
|
|
|
# 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
|
2024-12-10 16:02:12 +01:00
|
|
|
# include <__undef_macros>
|
[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
|
|
|
|
2010-05-11 19:42:16 +00:00
|
|
|
_LIBCPP_BEGIN_NAMESPACE_STD
|
|
|
|
|
2018-10-31 17:31:35 +00:00
|
|
|
template <class _Key, class _Compare, class _Allocator>
|
|
|
|
class multiset;
|
|
|
|
|
2010-05-11 19:42:16 +00:00
|
|
|
template <class _Key, class _Compare = less<_Key>, class _Allocator = allocator<_Key> >
|
2017-01-04 23:56:00 +00:00
|
|
|
class _LIBCPP_TEMPLATE_VIS set {
|
2010-05-11 19:42:16 +00:00
|
|
|
public:
|
|
|
|
// types:
|
|
|
|
typedef _Key key_type;
|
|
|
|
typedef key_type value_type;
|
2022-03-18 17:49:02 +01:00
|
|
|
typedef __type_identity_t<_Compare> key_compare;
|
2010-05-11 19:42:16 +00:00
|
|
|
typedef key_compare value_compare;
|
2022-03-18 17:49:02 +01:00
|
|
|
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;
|
2023-12-18 14:01:33 -05:00
|
|
|
|
2024-06-18 10:45:30 +02:00
|
|
|
static_assert(is_same<typename allocator_type::value_type, value_type>::value,
|
2015-11-26 01:24:04 +00:00
|
|
|
"Allocator::value_type must be same type as value_type");
|
|
|
|
|
2010-05-11 19:42:16 +00:00
|
|
|
private:
|
|
|
|
typedef __tree<value_type, value_compare, allocator_type> __base;
|
|
|
|
typedef allocator_traits<allocator_type> __alloc_traits;
|
|
|
|
|
2024-06-25 16:13:48 +01:00
|
|
|
static_assert(__check_valid_allocator<allocator_type>::value, "");
|
2022-10-08 22:17:32 +02:00
|
|
|
|
2010-05-11 19:42:16 +00:00
|
|
|
__base __tree_;
|
|
|
|
|
|
|
|
public:
|
|
|
|
typedef typename __base::pointer pointer;
|
|
|
|
typedef typename __base::const_pointer const_pointer;
|
|
|
|
typedef typename __base::size_type size_type;
|
|
|
|
typedef typename __base::difference_type difference_type;
|
|
|
|
typedef typename __base::const_iterator iterator;
|
|
|
|
typedef 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
|
|
|
|
2024-12-10 16:02:12 +01:00
|
|
|
# if _LIBCPP_STD_VER >= 17
|
2018-08-01 01:33:38 +00:00
|
|
|
typedef __set_node_handle<typename __base::__node, allocator_type> node_type;
|
|
|
|
typedef __insert_return_type<iterator, node_type> insert_return_type;
|
2024-12-10 16:02:12 +01:00
|
|
|
# endif
|
2018-08-01 01:33:38 +00:00
|
|
|
|
2018-10-31 17:31:35 +00:00
|
|
|
template <class _Key2, class _Compare2, class _Alloc2>
|
|
|
|
friend class _LIBCPP_TEMPLATE_VIS set;
|
|
|
|
template <class _Key2, class _Compare2, class _Alloc2>
|
|
|
|
friend class _LIBCPP_TEMPLATE_VIS multiset;
|
2023-12-18 14:01:33 -05:00
|
|
|
|
2010-09-23 16:27:36 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI set() _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_(value_compare()) {}
|
2023-12-18 14:01:33 -05:00
|
|
|
|
2014-03-10 04:50:10 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI explicit set(const value_compare& __comp) _NOEXCEPT_(
|
2011-06-04 15:22:34 +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_(__comp) {}
|
2023-12-18 14:01:33 -05:00
|
|
|
|
2014-03-05 19:06:20 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI explicit set(const value_compare& __comp, const allocator_type& __a) : __tree_(__comp, __a) {}
|
2010-05-11 19:42:16 +00:00
|
|
|
template <class _InputIterator>
|
|
|
|
_LIBCPP_HIDE_FROM_ABI set(_InputIterator __f, _InputIterator __l, const value_compare& __comp = value_compare())
|
|
|
|
: __tree_(__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-23 16:27:36 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI
|
2010-05-11 19:42:16 +00:00
|
|
|
set(_InputIterator __f, _InputIterator __l, const value_compare& __comp, const allocator_type& __a)
|
|
|
|
: __tree_(__comp, __a) {
|
|
|
|
insert(__f, __l);
|
|
|
|
}
|
|
|
|
|
2024-12-10 16:02:12 +01:00
|
|
|
# if _LIBCPP_STD_VER >= 23
|
2023-07-10 17:16:56 -07:00
|
|
|
template <_ContainerCompatibleRange<value_type> _Range>
|
|
|
|
_LIBCPP_HIDE_FROM_ABI
|
|
|
|
set(from_range_t,
|
|
|
|
_Range&& __range,
|
|
|
|
const key_compare& __comp = key_compare(),
|
|
|
|
const allocator_type& __a = allocator_type())
|
|
|
|
: __tree_(__comp, __a) {
|
|
|
|
insert_range(std::forward<_Range>(__range));
|
|
|
|
}
|
2024-12-10 16:02:12 +01:00
|
|
|
# endif
|
2023-07-10 17:16:56 -07:00
|
|
|
|
2024-12-10 16:02:12 +01:00
|
|
|
# if _LIBCPP_STD_VER >= 14
|
2013-09-11 00:06:45 +00:00
|
|
|
template <class _InputIterator>
|
|
|
|
_LIBCPP_HIDE_FROM_ABI set(_InputIterator __f, _InputIterator __l, const allocator_type& __a)
|
|
|
|
: set(__f, __l, key_compare(), __a) {}
|
2024-12-10 16:02:12 +01:00
|
|
|
# endif
|
2013-09-11 00:06:45 +00:00
|
|
|
|
2024-12-10 16:02:12 +01:00
|
|
|
# if _LIBCPP_STD_VER >= 23
|
2023-07-10 17:16:56 -07:00
|
|
|
template <_ContainerCompatibleRange<value_type> _Range>
|
|
|
|
_LIBCPP_HIDE_FROM_ABI set(from_range_t, _Range&& __range, const allocator_type& __a)
|
|
|
|
: set(from_range, std::forward<_Range>(__range), key_compare(), __a) {}
|
2024-12-10 16:02:12 +01:00
|
|
|
# endif
|
2023-07-10 17:16:56 -07:00
|
|
|
|
2010-05-11 19:42:16 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI set(const set& __s) : __tree_(__s.__tree_) { insert(__s.begin(), __s.end()); }
|
|
|
|
|
2011-07-01 19:24:36 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI set& operator=(const set& __s) {
|
|
|
|
__tree_ = __s.__tree_;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2024-12-10 16:02:12 +01:00
|
|
|
# ifndef _LIBCPP_CXX03_LANG
|
2024-06-23 22:03:41 +02:00
|
|
|
_LIBCPP_HIDE_FROM_ABI set(set&& __s) noexcept(is_nothrow_move_constructible<__base>::value)
|
2011-06-30 21:18:19 +00:00
|
|
|
: __tree_(std::move(__s.__tree_)) {}
|
2024-12-10 16:02:12 +01:00
|
|
|
# endif // _LIBCPP_CXX03_LANG
|
2010-05-11 19:42:16 +00:00
|
|
|
|
|
|
|
_LIBCPP_HIDE_FROM_ABI explicit set(const allocator_type& __a) : __tree_(__a) {}
|
|
|
|
|
|
|
|
_LIBCPP_HIDE_FROM_ABI set(const set& __s, const allocator_type& __a) : __tree_(__s.__tree_.value_comp(), __a) {
|
|
|
|
insert(__s.begin(), __s.end());
|
|
|
|
}
|
|
|
|
|
2024-12-10 16:02:12 +01:00
|
|
|
# ifndef _LIBCPP_CXX03_LANG
|
2023-01-23 10:27:14 +01:00
|
|
|
_LIBCPP_HIDE_FROM_ABI set(set&& __s, const allocator_type& __a);
|
2010-05-11 19:42:16 +00:00
|
|
|
|
2013-09-11 00:06:45 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI set(initializer_list<value_type> __il, const value_compare& __comp = value_compare())
|
|
|
|
: __tree_(__comp) {
|
|
|
|
insert(__il.begin(), __il.end());
|
|
|
|
}
|
|
|
|
|
2010-09-23 16:27:36 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI set(initializer_list<value_type> __il, const value_compare& __comp, const allocator_type& __a)
|
2023-07-10 17:16:56 -07:00
|
|
|
: __tree_(__comp, __a) {
|
2010-05-11 19:42:16 +00:00
|
|
|
insert(__il.begin(), __il.end());
|
2023-12-18 14:01:33 -05:00
|
|
|
}
|
|
|
|
|
2024-12-10 16:02:12 +01:00
|
|
|
# if _LIBCPP_STD_VER >= 14
|
2013-09-11 00:06:45 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI set(initializer_list<value_type> __il, const allocator_type& __a)
|
|
|
|
: set(__il, key_compare(), __a) {}
|
2024-12-10 16:02:12 +01:00
|
|
|
# endif
|
2023-12-18 14:01:33 -05:00
|
|
|
|
2010-05-11 19:42:16 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI set& operator=(initializer_list<value_type> __il) {
|
|
|
|
__tree_.__assign_unique(__il.begin(), __il.end());
|
|
|
|
return *this;
|
|
|
|
}
|
2023-12-18 14:01:33 -05:00
|
|
|
|
2024-06-23 22:03:41 +02:00
|
|
|
_LIBCPP_HIDE_FROM_ABI set& operator=(set&& __s) noexcept(is_nothrow_move_assignable<__base>::value) {
|
2011-06-30 21:18:19 +00:00
|
|
|
__tree_ = std::move(__s.__tree_);
|
2010-05-11 19:42:16 +00:00
|
|
|
return *this;
|
|
|
|
}
|
2024-12-10 16:02:12 +01:00
|
|
|
# endif // _LIBCPP_CXX03_LANG
|
2010-05-11 19:42:16 +00:00
|
|
|
|
[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
|
|
|
_LIBCPP_HIDE_FROM_ABI ~set() { static_assert(sizeof(__diagnose_non_const_comparator<_Key, _Compare>()), ""); }
|
|
|
|
|
2011-06-04 15:22:34 +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-05-11 19:42:16 +00:00
|
|
|
|
2011-06-04 15:22:34 +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()); }
|
|
|
|
_LIBCPP_HIDE_FROM_ABI reverse_iterator rend() _NOEXCEPT { return reverse_iterator(begin()); }
|
|
|
|
_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 15:22:34 +00: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(); }
|
|
|
|
_LIBCPP_HIDE_FROM_ABI const_reverse_iterator crend() const _NOEXCEPT { return rend(); }
|
2023-12-18 14:01:33 -05:00
|
|
|
|
2024-09-12 21:18:43 +02:00
|
|
|
[[__nodiscard__]] _LIBCPP_HIDE_FROM_ABI bool empty() const _NOEXCEPT { return __tree_.size() == 0; }
|
2011-06-04 15:22:34 +00:00
|
|
|
_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
|
|
|
|
2010-05-11 19:42:16 +00:00
|
|
|
// modifiers:
|
2024-12-10 16:02:12 +01:00
|
|
|
# ifndef _LIBCPP_CXX03_LANG
|
2010-05-11 19:42:16 +00:00
|
|
|
template <class... _Args>
|
|
|
|
_LIBCPP_HIDE_FROM_ABI pair<iterator, bool> emplace(_Args&&... __args) {
|
2011-06-30 21:18:19 +00:00
|
|
|
return __tree_.__emplace_unique(std::forward<_Args>(__args)...);
|
|
|
|
}
|
2010-05-11 19:42:16 +00:00
|
|
|
template <class... _Args>
|
|
|
|
_LIBCPP_HIDE_FROM_ABI iterator emplace_hint(const_iterator __p, _Args&&... __args) {
|
2011-06-30 21:18:19 +00:00
|
|
|
return __tree_.__emplace_hint_unique(__p, std::forward<_Args>(__args)...);
|
|
|
|
}
|
2024-12-10 16:02:12 +01:00
|
|
|
# endif // _LIBCPP_CXX03_LANG
|
2017-04-18 20:58:03 +00:00
|
|
|
|
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, __v);
|
|
|
|
}
|
2023-12-18 14:01:33 -05:00
|
|
|
|
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)
|
|
|
|
__tree_.__insert_unique(__e, *__f);
|
|
|
|
}
|
|
|
|
|
2024-12-10 16:02:12 +01:00
|
|
|
# if _LIBCPP_STD_VER >= 23
|
2023-07-10 17:16:56 -07:00
|
|
|
template <_ContainerCompatibleRange<value_type> _Range>
|
|
|
|
_LIBCPP_HIDE_FROM_ABI void insert_range(_Range&& __range) {
|
|
|
|
const_iterator __end = cend();
|
|
|
|
for (auto&& __element : __range) {
|
|
|
|
__tree_.__insert_unique(__end, std::forward<decltype(__element)>(__element));
|
|
|
|
}
|
2023-12-18 14:01:33 -05:00
|
|
|
}
|
2024-12-10 16:02:12 +01:00
|
|
|
# endif
|
2023-07-10 17:16:56 -07:00
|
|
|
|
2024-12-10 16:02:12 +01:00
|
|
|
# ifndef _LIBCPP_CXX03_LANG
|
2017-04-18 20:58:03 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI pair<iterator, bool> insert(value_type&& __v) {
|
|
|
|
return __tree_.__insert_unique(std::move(__v));
|
|
|
|
}
|
|
|
|
|
|
|
|
_LIBCPP_HIDE_FROM_ABI iterator insert(const_iterator __p, value_type&& __v) {
|
|
|
|
return __tree_.__insert_unique(__p, std::move(__v));
|
|
|
|
}
|
|
|
|
|
2010-05-11 19:42:16 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI void insert(initializer_list<value_type> __il) { insert(__il.begin(), __il.end()); }
|
2024-12-10 16:02:12 +01:00
|
|
|
# endif // _LIBCPP_CXX03_LANG
|
2010-05-11 19:42:16 +00:00
|
|
|
|
|
|
|
_LIBCPP_HIDE_FROM_ABI iterator erase(const_iterator __p) { return __tree_.erase(__p); }
|
|
|
|
_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, __l); }
|
2011-06-04 15:22:34 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI void clear() _NOEXCEPT { __tree_.clear(); }
|
2010-05-11 19:42:16 +00:00
|
|
|
|
2024-12-10 16:02:12 +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) {
|
2024-01-05 16:29:23 -08:00
|
|
|
_LIBCPP_ASSERT_COMPATIBLE_ALLOCATOR(__nh.empty() || __nh.get_allocator() == get_allocator(),
|
|
|
|
"node_type with incompatible allocator passed to set::insert()");
|
2018-08-01 01:33:38 +00:00
|
|
|
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) {
|
2024-01-05 16:29:23 -08:00
|
|
|
_LIBCPP_ASSERT_COMPATIBLE_ALLOCATOR(__nh.empty() || __nh.get_allocator() == get_allocator(),
|
|
|
|
"node_type with incompatible allocator passed to set::insert()");
|
2018-08-01 01:33:38 +00:00
|
|
|
return __tree_.template __node_handle_insert_unique<node_type>(__hint, 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);
|
|
|
|
}
|
2018-11-01 14:41:37 +00:00
|
|
|
template <class _Compare2>
|
|
|
|
_LIBCPP_HIDE_FROM_ABI void merge(set<key_type, _Compare2, allocator_type>& __source) {
|
2024-01-05 16:29:23 -08:00
|
|
|
_LIBCPP_ASSERT_COMPATIBLE_ALLOCATOR(
|
2023-06-27 16:40:39 -07:00
|
|
|
__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(set<key_type, _Compare2, allocator_type>&& __source) {
|
2024-01-05 16:29:23 -08:00
|
|
|
_LIBCPP_ASSERT_COMPATIBLE_ALLOCATOR(
|
2023-06-27 16:40:39 -07:00
|
|
|
__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(multiset<key_type, _Compare2, allocator_type>& __source) {
|
2024-01-05 16:29:23 -08:00
|
|
|
_LIBCPP_ASSERT_COMPATIBLE_ALLOCATOR(
|
2023-06-27 16:40:39 -07:00
|
|
|
__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(multiset<key_type, _Compare2, allocator_type>&& __source) {
|
2024-01-05 16:29:23 -08:00
|
|
|
_LIBCPP_ASSERT_COMPATIBLE_ALLOCATOR(
|
2023-06-27 16:40:39 -07:00
|
|
|
__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_);
|
|
|
|
}
|
2024-12-10 16:02:12 +01:00
|
|
|
# endif
|
2018-08-01 01:33:38 +00:00
|
|
|
|
2024-06-18 11:01:43 +02:00
|
|
|
_LIBCPP_HIDE_FROM_ABI void swap(set& __s) _NOEXCEPT_(__is_nothrow_swappable_v<__base>) { __tree_.swap(__s.__tree_); }
|
2010-05-11 19:42:16 +00:00
|
|
|
|
2011-06-04 15:22:34 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI allocator_type get_allocator() const _NOEXCEPT { return __tree_.__alloc(); }
|
2010-05-11 19:42:16 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI key_compare key_comp() const { return __tree_.value_comp(); }
|
|
|
|
_LIBCPP_HIDE_FROM_ABI value_compare value_comp() const { return __tree_.value_comp(); }
|
|
|
|
|
|
|
|
// set operations:
|
|
|
|
_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); }
|
2024-12-10 16:02:12 +01:00
|
|
|
# if _LIBCPP_STD_VER >= 14
|
2024-05-08 10:34:55 +02:00
|
|
|
template <typename _K2, enable_if_t<__is_transparent_v<_Compare, _K2>, int> = 0>
|
2013-08-13 01:11:06 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI iterator find(const _K2& __k) {
|
|
|
|
return __tree_.find(__k);
|
|
|
|
}
|
2024-05-08 10:34:55 +02:00
|
|
|
template <typename _K2, enable_if_t<__is_transparent_v<_Compare, _K2>, int> = 0>
|
2013-08-13 01:11:06 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI const_iterator find(const _K2& __k) const {
|
|
|
|
return __tree_.find(__k);
|
|
|
|
}
|
2024-12-10 16:02:12 +01:00
|
|
|
# endif
|
2013-08-13 01:11:06 +00:00
|
|
|
|
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); }
|
2024-12-10 16:02:12 +01:00
|
|
|
# if _LIBCPP_STD_VER >= 14
|
2024-05-08 10:34:55 +02:00
|
|
|
template <typename _K2, enable_if_t<__is_transparent_v<_Compare, _K2>, 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);
|
|
|
|
}
|
2024-12-10 16:02:12 +01:00
|
|
|
# endif
|
2019-07-16 03:21:01 +00:00
|
|
|
|
2024-12-10 16:02:12 +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(); }
|
2024-05-08 10:34:55 +02:00
|
|
|
template <typename _K2, enable_if_t<__is_transparent_v<_Compare, _K2>, int> = 0>
|
2021-04-13 17:10:55 +02:00
|
|
|
_LIBCPP_HIDE_FROM_ABI bool contains(const _K2& __k) const {
|
|
|
|
return find(__k) != end();
|
|
|
|
}
|
2024-12-10 16:02:12 +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); }
|
2024-12-10 16:02:12 +01:00
|
|
|
# if _LIBCPP_STD_VER >= 14
|
2024-05-08 10:34:55 +02:00
|
|
|
template <typename _K2, enable_if_t<__is_transparent_v<_Compare, _K2>, int> = 0>
|
2013-08-13 01:11:06 +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
|
|
|
|
2024-05-08 10:34:55 +02:00
|
|
|
template <typename _K2, enable_if_t<__is_transparent_v<_Compare, _K2>, int> = 0>
|
2013-08-13 01:11:06 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI const_iterator lower_bound(const _K2& __k) const {
|
|
|
|
return __tree_.lower_bound(__k);
|
|
|
|
}
|
2024-12-10 16:02:12 +01:00
|
|
|
# endif
|
2013-08-13 01:11:06 +00:00
|
|
|
|
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); }
|
2024-12-10 16:02:12 +01:00
|
|
|
# if _LIBCPP_STD_VER >= 14
|
2024-05-08 10:34:55 +02:00
|
|
|
template <typename _K2, enable_if_t<__is_transparent_v<_Compare, _K2>, int> = 0>
|
2013-08-13 01:11:06 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI iterator upper_bound(const _K2& __k) {
|
|
|
|
return __tree_.upper_bound(__k);
|
|
|
|
}
|
2024-05-08 10:34:55 +02:00
|
|
|
template <typename _K2, enable_if_t<__is_transparent_v<_Compare, _K2>, int> = 0>
|
2013-08-13 01:11:06 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI const_iterator upper_bound(const _K2& __k) const {
|
|
|
|
return __tree_.upper_bound(__k);
|
|
|
|
}
|
2024-12-10 16:02:12 +01:00
|
|
|
# endif
|
2013-08-13 01:11:06 +00:00
|
|
|
|
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);
|
|
|
|
}
|
2024-12-10 16:02:12 +01:00
|
|
|
# if _LIBCPP_STD_VER >= 14
|
2024-05-08 10:34:55 +02:00
|
|
|
template <typename _K2, enable_if_t<__is_transparent_v<_Compare, _K2>, 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);
|
|
|
|
}
|
2024-05-08 10:34:55 +02:00
|
|
|
template <typename _K2, enable_if_t<__is_transparent_v<_Compare, _K2>, int> = 0>
|
2023-08-15 12:19:05 -07:00
|
|
|
_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);
|
|
|
|
}
|
2024-12-10 16:02:12 +01:00
|
|
|
# endif
|
2010-05-11 19:42:16 +00:00
|
|
|
};
|
|
|
|
|
2024-12-10 16:02:12 +01:00
|
|
|
# if _LIBCPP_STD_VER >= 17
|
2019-06-11 18:21:08 +00:00
|
|
|
template <class _InputIterator,
|
2021-03-03 23:02:20 -05:00
|
|
|
class _Compare = less<__iter_value_type<_InputIterator>>,
|
|
|
|
class _Allocator = allocator<__iter_value_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<_Allocator>::value, void>,
|
|
|
|
class = enable_if_t<!__is_allocator<_Compare>::value, void>>
|
2019-06-11 18:21:08 +00:00
|
|
|
set(_InputIterator, _InputIterator, _Compare = _Compare(), _Allocator = _Allocator())
|
2021-03-03 23:02:20 -05:00
|
|
|
-> set<__iter_value_type<_InputIterator>, _Compare, _Allocator>;
|
2019-06-11 18:21:08 +00:00
|
|
|
|
2024-12-10 16:02:12 +01:00
|
|
|
# if _LIBCPP_STD_VER >= 23
|
2023-07-10 17:16:56 -07:00
|
|
|
template <ranges::input_range _Range,
|
|
|
|
class _Compare = less<ranges::range_value_t<_Range>>,
|
|
|
|
class _Allocator = allocator<ranges::range_value_t<_Range>>,
|
|
|
|
class = enable_if_t<__is_allocator<_Allocator>::value, void>,
|
|
|
|
class = enable_if_t<!__is_allocator<_Compare>::value, void>>
|
|
|
|
set(from_range_t, _Range&&, _Compare = _Compare(), _Allocator = _Allocator())
|
|
|
|
-> set<ranges::range_value_t<_Range>, _Compare, _Allocator>;
|
2024-12-10 16:02:12 +01:00
|
|
|
# endif
|
2023-12-18 14:01:33 -05:00
|
|
|
|
2019-06-11 18:21:08 +00:00
|
|
|
template <class _Key,
|
|
|
|
class _Compare = less<_Key>,
|
|
|
|
class _Allocator = allocator<_Key>,
|
2021-11-09 09:21:02 -08:00
|
|
|
class = enable_if_t<!__is_allocator<_Compare>::value, void>,
|
|
|
|
class = enable_if_t<__is_allocator<_Allocator>::value, void>>
|
2019-06-11 18:21:08 +00:00
|
|
|
set(initializer_list<_Key>, _Compare = _Compare(), _Allocator = _Allocator()) -> set<_Key, _Compare, _Allocator>;
|
2023-12-18 14:01:33 -05:00
|
|
|
|
2019-06-11 18:21:08 +00:00
|
|
|
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-11 18:21:08 +00:00
|
|
|
set(_InputIterator,
|
|
|
|
_InputIterator,
|
2021-03-03 23:02:20 -05:00
|
|
|
_Allocator) -> set<__iter_value_type<_InputIterator>, less<__iter_value_type<_InputIterator>>, _Allocator>;
|
2019-06-11 18:21:08 +00:00
|
|
|
|
2024-12-10 16:02:12 +01:00
|
|
|
# if _LIBCPP_STD_VER >= 23
|
2023-07-10 17:16:56 -07:00
|
|
|
template <ranges::input_range _Range, class _Allocator, class = enable_if_t<__is_allocator<_Allocator>::value, void>>
|
|
|
|
set(from_range_t,
|
|
|
|
_Range&&,
|
|
|
|
_Allocator) -> set<ranges::range_value_t<_Range>, less<ranges::range_value_t<_Range>>, _Allocator>;
|
2024-12-10 16:02:12 +01:00
|
|
|
# endif
|
2023-07-10 17:16:56 -07:00
|
|
|
|
[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 _Allocator, class = enable_if_t<__is_allocator<_Allocator>::value, void>>
|
2019-06-11 18:21:08 +00:00
|
|
|
set(initializer_list<_Key>, _Allocator) -> set<_Key, less<_Key>, _Allocator>;
|
2024-12-10 16:02:12 +01:00
|
|
|
# endif
|
2019-06-11 18:21:08 +00:00
|
|
|
|
2024-12-10 16:02:12 +01:00
|
|
|
# ifndef _LIBCPP_CXX03_LANG
|
2010-05-11 19:42:16 +00:00
|
|
|
|
|
|
|
template <class _Key, class _Compare, class _Allocator>
|
|
|
|
set<_Key, _Compare, _Allocator>::set(set&& __s, const allocator_type& __a) : __tree_(std::move(__s.__tree_), __a) {
|
|
|
|
if (__a != __s.get_allocator()) {
|
|
|
|
const_iterator __e = cend();
|
|
|
|
while (!__s.empty())
|
2011-06-30 21:18:19 +00:00
|
|
|
insert(__e, std::move(__s.__tree_.remove(__s.begin())->__value_));
|
2010-05-11 19:42:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-12-10 16:02:12 +01:00
|
|
|
# endif // _LIBCPP_CXX03_LANG
|
2010-05-11 19:42:16 +00:00
|
|
|
|
|
|
|
template <class _Key, class _Compare, class _Allocator>
|
2010-09-23 16:27:36 +00:00
|
|
|
inline _LIBCPP_HIDE_FROM_ABI bool
|
2010-05-11 19:42:16 +00:00
|
|
|
operator==(const set<_Key, _Compare, _Allocator>& __x, const set<_Key, _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
|
|
|
}
|
|
|
|
|
2024-12-10 16:02:12 +01:00
|
|
|
# if _LIBCPP_STD_VER <= 17
|
2023-05-22 23:33:45 +03:00
|
|
|
|
2010-05-11 19:42:16 +00:00
|
|
|
template <class _Key, class _Compare, class _Allocator>
|
2010-09-23 16:27:36 +00:00
|
|
|
inline _LIBCPP_HIDE_FROM_ABI bool
|
2010-05-11 19:42:16 +00:00
|
|
|
operator<(const set<_Key, _Compare, _Allocator>& __x, const set<_Key, _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 _Compare, class _Allocator>
|
2010-09-23 16:27:36 +00:00
|
|
|
inline _LIBCPP_HIDE_FROM_ABI bool
|
2010-05-11 19:42:16 +00:00
|
|
|
operator!=(const set<_Key, _Compare, _Allocator>& __x, const set<_Key, _Compare, _Allocator>& __y) {
|
|
|
|
return !(__x == __y);
|
|
|
|
}
|
|
|
|
|
|
|
|
template <class _Key, class _Compare, class _Allocator>
|
2010-09-23 16:27:36 +00:00
|
|
|
inline _LIBCPP_HIDE_FROM_ABI bool
|
2010-05-11 19:42:16 +00:00
|
|
|
operator>(const set<_Key, _Compare, _Allocator>& __x, const set<_Key, _Compare, _Allocator>& __y) {
|
|
|
|
return __y < __x;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <class _Key, class _Compare, class _Allocator>
|
2010-09-23 16:27:36 +00:00
|
|
|
inline _LIBCPP_HIDE_FROM_ABI bool
|
2010-05-11 19:42:16 +00:00
|
|
|
operator>=(const set<_Key, _Compare, _Allocator>& __x, const set<_Key, _Compare, _Allocator>& __y) {
|
|
|
|
return !(__x < __y);
|
|
|
|
}
|
|
|
|
|
|
|
|
template <class _Key, class _Compare, class _Allocator>
|
2010-09-23 16:27:36 +00:00
|
|
|
inline _LIBCPP_HIDE_FROM_ABI bool
|
2010-05-11 19:42:16 +00:00
|
|
|
operator<=(const set<_Key, _Compare, _Allocator>& __x, const set<_Key, _Compare, _Allocator>& __y) {
|
|
|
|
return !(__y < __x);
|
|
|
|
}
|
|
|
|
|
2024-12-10 16:02:12 +01:00
|
|
|
# else // _LIBCPP_STD_VER <= 17
|
2023-05-22 23:33:45 +03:00
|
|
|
|
2025-02-15 20:15:32 +01:00
|
|
|
template <class _Key, class _Compare, class _Allocator>
|
2023-05-22 23:33:45 +03:00
|
|
|
_LIBCPP_HIDE_FROM_ABI __synth_three_way_result<_Key>
|
2025-02-15 20:15:32 +01:00
|
|
|
operator<=>(const set<_Key, _Compare, _Allocator>& __x, const set<_Key, _Compare, _Allocator>& __y) {
|
2024-07-07 20:49:10 +03:00
|
|
|
return std::lexicographical_compare_three_way(__x.begin(), __x.end(), __y.begin(), __y.end(), std::__synth_three_way);
|
2023-05-22 23:33:45 +03:00
|
|
|
}
|
|
|
|
|
2024-12-10 16:02:12 +01:00
|
|
|
# endif // _LIBCPP_STD_VER <= 17
|
2023-05-22 23:33:45 +03:00
|
|
|
|
2010-05-11 19:42:16 +00:00
|
|
|
// specialized algorithms:
|
|
|
|
template <class _Key, class _Compare, class _Allocator>
|
|
|
|
inline _LIBCPP_HIDE_FROM_ABI void swap(set<_Key, _Compare, _Allocator>& __x, set<_Key, _Compare, _Allocator>& __y)
|
2011-06-04 15:22:34 +00:00
|
|
|
_NOEXCEPT_(_NOEXCEPT_(__x.swap(__y))) {
|
2010-05-11 19:42:16 +00:00
|
|
|
__x.swap(__y);
|
|
|
|
}
|
|
|
|
|
2024-12-10 16:02:12 +01:00
|
|
|
# if _LIBCPP_STD_VER >= 20
|
2018-12-14 18:49:35 +00:00
|
|
|
template <class _Key, class _Compare, class _Allocator, class _Predicate>
|
2020-05-02 13:58:03 +02:00
|
|
|
inline _LIBCPP_HIDE_FROM_ABI typename set<_Key, _Compare, _Allocator>::size_type
|
|
|
|
erase_if(set<_Key, _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
|
|
|
}
|
2024-12-10 16:02:12 +01:00
|
|
|
# endif
|
2018-12-14 18:49:35 +00:00
|
|
|
|
2024-10-12 18:29:59 +01:00
|
|
|
template <class _Key, class _Compare, class _Allocator>
|
|
|
|
struct __container_traits<set<_Key, _Compare, _Allocator> > {
|
|
|
|
// http://eel.is/c++draft/associative.reqmts.except#2
|
|
|
|
// For associative containers, if an exception is thrown by any operation from within
|
|
|
|
// an insert or emplace function inserting a single element, the insertion has no effect.
|
|
|
|
static _LIBCPP_CONSTEXPR const bool __emplacement_has_strong_exception_safety_guarantee = true;
|
|
|
|
};
|
|
|
|
|
2010-05-11 19:42:16 +00:00
|
|
|
template <class _Key, class _Compare = less<_Key>, class _Allocator = allocator<_Key> >
|
2017-01-04 23:56:00 +00:00
|
|
|
class _LIBCPP_TEMPLATE_VIS multiset {
|
2010-05-11 19:42:16 +00:00
|
|
|
public:
|
|
|
|
// types:
|
2021-03-03 11:10:49 -05:00
|
|
|
typedef _Key key_type;
|
2010-05-11 19:42:16 +00:00
|
|
|
typedef key_type value_type;
|
2022-03-18 17:49:02 +01:00
|
|
|
typedef __type_identity_t<_Compare> key_compare;
|
2010-05-11 19:42:16 +00:00
|
|
|
typedef key_compare value_compare;
|
2022-03-18 17:49:02 +01:00
|
|
|
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;
|
2023-12-18 14:01:33 -05:00
|
|
|
|
2024-06-18 10:45:30 +02:00
|
|
|
static_assert(is_same<typename allocator_type::value_type, value_type>::value,
|
2015-11-26 01:24:04 +00:00
|
|
|
"Allocator::value_type must be same type as value_type");
|
|
|
|
|
2010-05-11 19:42:16 +00:00
|
|
|
private:
|
|
|
|
typedef __tree<value_type, value_compare, allocator_type> __base;
|
|
|
|
typedef allocator_traits<allocator_type> __alloc_traits;
|
|
|
|
|
2024-06-25 16:13:48 +01:00
|
|
|
static_assert(__check_valid_allocator<allocator_type>::value, "");
|
2022-10-08 22:17:32 +02:00
|
|
|
|
2010-05-11 19:42:16 +00:00
|
|
|
__base __tree_;
|
|
|
|
|
|
|
|
public:
|
|
|
|
typedef typename __base::pointer pointer;
|
|
|
|
typedef typename __base::const_pointer const_pointer;
|
|
|
|
typedef typename __base::size_type size_type;
|
|
|
|
typedef typename __base::difference_type difference_type;
|
|
|
|
typedef typename __base::const_iterator iterator;
|
|
|
|
typedef 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
|
|
|
|
2024-12-10 16:02:12 +01:00
|
|
|
# if _LIBCPP_STD_VER >= 17
|
2018-08-01 01:33:38 +00:00
|
|
|
typedef __set_node_handle<typename __base::__node, allocator_type> node_type;
|
2024-12-10 16:02:12 +01:00
|
|
|
# endif
|
2018-08-01 01:33:38 +00:00
|
|
|
|
2018-10-31 17:31:35 +00:00
|
|
|
template <class _Key2, class _Compare2, class _Alloc2>
|
|
|
|
friend class _LIBCPP_TEMPLATE_VIS set;
|
|
|
|
template <class _Key2, class _Compare2, class _Alloc2>
|
|
|
|
friend class _LIBCPP_TEMPLATE_VIS multiset;
|
2023-12-18 14:01:33 -05:00
|
|
|
|
2010-05-11 19:42:16 +00:00
|
|
|
// construct/copy/destroy:
|
2010-09-23 16:27:36 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI multiset() _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_(value_compare()) {}
|
2023-12-18 14:01:33 -05:00
|
|
|
|
2014-03-10 04:50:10 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI explicit multiset(const value_compare& __comp) _NOEXCEPT_(
|
2011-06-04 15:22:34 +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_(__comp) {}
|
2023-12-18 14:01:33 -05:00
|
|
|
|
2014-03-05 19:06:20 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI explicit multiset(const value_compare& __comp, const allocator_type& __a)
|
2010-05-11 19:42:16 +00:00
|
|
|
: __tree_(__comp, __a) {}
|
|
|
|
template <class _InputIterator>
|
|
|
|
_LIBCPP_HIDE_FROM_ABI multiset(_InputIterator __f, _InputIterator __l, const value_compare& __comp = value_compare())
|
|
|
|
: __tree_(__comp) {
|
|
|
|
insert(__f, __l);
|
|
|
|
}
|
|
|
|
|
2024-12-10 16:02:12 +01:00
|
|
|
# if _LIBCPP_STD_VER >= 14
|
2013-09-11 00:06:45 +00:00
|
|
|
template <class _InputIterator>
|
|
|
|
_LIBCPP_HIDE_FROM_ABI multiset(_InputIterator __f, _InputIterator __l, const allocator_type& __a)
|
|
|
|
: multiset(__f, __l, key_compare(), __a) {}
|
2024-12-10 16:02:12 +01:00
|
|
|
# endif
|
2013-09-11 00:06:45 +00:00
|
|
|
|
2010-05-11 19:42:16 +00:00
|
|
|
template <class _InputIterator>
|
2010-09-23 16:27:36 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI
|
2010-05-11 19:42:16 +00:00
|
|
|
multiset(_InputIterator __f, _InputIterator __l, const value_compare& __comp, const allocator_type& __a)
|
|
|
|
: __tree_(__comp, __a) {
|
|
|
|
insert(__f, __l);
|
|
|
|
}
|
|
|
|
|
2024-12-10 16:02:12 +01:00
|
|
|
# if _LIBCPP_STD_VER >= 23
|
2023-07-10 17:16:56 -07:00
|
|
|
template <_ContainerCompatibleRange<value_type> _Range>
|
|
|
|
_LIBCPP_HIDE_FROM_ABI
|
|
|
|
multiset(from_range_t,
|
|
|
|
_Range&& __range,
|
|
|
|
const key_compare& __comp = key_compare(),
|
|
|
|
const allocator_type& __a = allocator_type())
|
|
|
|
: __tree_(__comp, __a) {
|
|
|
|
insert_range(std::forward<_Range>(__range));
|
|
|
|
}
|
|
|
|
|
|
|
|
template <_ContainerCompatibleRange<value_type> _Range>
|
|
|
|
_LIBCPP_HIDE_FROM_ABI multiset(from_range_t, _Range&& __range, const allocator_type& __a)
|
|
|
|
: multiset(from_range, std::forward<_Range>(__range), key_compare(), __a) {}
|
2024-12-10 16:02:12 +01:00
|
|
|
# endif
|
2023-07-10 17:16:56 -07:00
|
|
|
|
2010-05-11 19:42:16 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI multiset(const multiset& __s)
|
|
|
|
: __tree_(__s.__tree_.value_comp(),
|
|
|
|
__alloc_traits::select_on_container_copy_construction(__s.__tree_.__alloc())) {
|
|
|
|
insert(__s.begin(), __s.end());
|
|
|
|
}
|
2023-12-18 14:01:33 -05:00
|
|
|
|
2011-07-01 19:24:36 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI multiset& operator=(const multiset& __s) {
|
|
|
|
__tree_ = __s.__tree_;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2024-12-10 16:02:12 +01:00
|
|
|
# ifndef _LIBCPP_CXX03_LANG
|
2024-06-23 22:03:41 +02:00
|
|
|
_LIBCPP_HIDE_FROM_ABI multiset(multiset&& __s) noexcept(is_nothrow_move_constructible<__base>::value)
|
2011-06-30 21:18:19 +00:00
|
|
|
: __tree_(std::move(__s.__tree_)) {}
|
2017-04-18 20:58:03 +00:00
|
|
|
|
2023-01-23 10:27:14 +01:00
|
|
|
_LIBCPP_HIDE_FROM_ABI multiset(multiset&& __s, const allocator_type& __a);
|
2024-12-10 16:02:12 +01:00
|
|
|
# endif // _LIBCPP_CXX03_LANG
|
2010-05-11 19:42:16 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI explicit multiset(const allocator_type& __a) : __tree_(__a) {}
|
|
|
|
_LIBCPP_HIDE_FROM_ABI multiset(const multiset& __s, const allocator_type& __a)
|
|
|
|
: __tree_(__s.__tree_.value_comp(), __a) {
|
|
|
|
insert(__s.begin(), __s.end());
|
|
|
|
}
|
|
|
|
|
2024-12-10 16:02:12 +01:00
|
|
|
# ifndef _LIBCPP_CXX03_LANG
|
2010-05-11 19:42:16 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI multiset(initializer_list<value_type> __il, const value_compare& __comp = value_compare())
|
|
|
|
: __tree_(__comp) {
|
|
|
|
insert(__il.begin(), __il.end());
|
|
|
|
}
|
|
|
|
|
2018-11-01 14:41:37 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI
|
2013-09-11 00:06:45 +00:00
|
|
|
multiset(initializer_list<value_type> __il, const value_compare& __comp, const allocator_type& __a)
|
2023-07-10 17:16:56 -07:00
|
|
|
: __tree_(__comp, __a) {
|
2010-05-11 19:42:16 +00:00
|
|
|
insert(__il.begin(), __il.end());
|
2023-12-18 14:01:33 -05:00
|
|
|
}
|
|
|
|
|
2024-12-10 16:02:12 +01:00
|
|
|
# if _LIBCPP_STD_VER >= 14
|
2013-09-11 00:06:45 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI multiset(initializer_list<value_type> __il, const allocator_type& __a)
|
|
|
|
: multiset(__il, key_compare(), __a) {}
|
2024-12-10 16:02:12 +01:00
|
|
|
# endif
|
2023-12-18 14:01:33 -05:00
|
|
|
|
2010-05-11 19:42:16 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI multiset& operator=(initializer_list<value_type> __il) {
|
|
|
|
__tree_.__assign_multi(__il.begin(), __il.end());
|
|
|
|
return *this;
|
|
|
|
}
|
2023-12-18 14:01:33 -05:00
|
|
|
|
2011-06-04 15:22:34 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI multiset& operator=(multiset&& __s) _NOEXCEPT_(is_nothrow_move_assignable<__base>::value) {
|
2011-06-30 21:18:19 +00:00
|
|
|
__tree_ = std::move(__s.__tree_);
|
2010-05-11 19:42:16 +00:00
|
|
|
return *this;
|
|
|
|
}
|
2024-12-10 16:02:12 +01:00
|
|
|
# endif // _LIBCPP_CXX03_LANG
|
2010-05-11 19:42:16 +00:00
|
|
|
|
[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
|
|
|
_LIBCPP_HIDE_FROM_ABI ~multiset() { static_assert(sizeof(__diagnose_non_const_comparator<_Key, _Compare>()), ""); }
|
|
|
|
|
2011-06-04 15:22:34 +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-05-11 19:42:16 +00:00
|
|
|
|
2011-06-04 15:22:34 +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()); }
|
|
|
|
_LIBCPP_HIDE_FROM_ABI reverse_iterator rend() _NOEXCEPT { return reverse_iterator(begin()); }
|
|
|
|
_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 15:22:34 +00: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(); }
|
|
|
|
_LIBCPP_HIDE_FROM_ABI const_reverse_iterator crend() const _NOEXCEPT { return rend(); }
|
2023-12-18 14:01:33 -05:00
|
|
|
|
2024-09-12 21:18:43 +02:00
|
|
|
[[__nodiscard__]] _LIBCPP_HIDE_FROM_ABI bool empty() const _NOEXCEPT { return __tree_.size() == 0; }
|
2011-06-04 15:22:34 +00:00
|
|
|
_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
|
|
|
|
2010-05-11 19:42:16 +00:00
|
|
|
// modifiers:
|
2024-12-10 16:02:12 +01:00
|
|
|
# ifndef _LIBCPP_CXX03_LANG
|
2010-05-11 19:42:16 +00:00
|
|
|
template <class... _Args>
|
|
|
|
_LIBCPP_HIDE_FROM_ABI iterator emplace(_Args&&... __args) {
|
2011-06-30 21:18:19 +00:00
|
|
|
return __tree_.__emplace_multi(std::forward<_Args>(__args)...);
|
|
|
|
}
|
2010-05-11 19:42:16 +00:00
|
|
|
template <class... _Args>
|
|
|
|
_LIBCPP_HIDE_FROM_ABI iterator emplace_hint(const_iterator __p, _Args&&... __args) {
|
2011-06-30 21:18:19 +00:00
|
|
|
return __tree_.__emplace_hint_multi(__p, std::forward<_Args>(__args)...);
|
|
|
|
}
|
2024-12-10 16:02:12 +01:00
|
|
|
# endif // _LIBCPP_CXX03_LANG
|
2017-04-18 20:58:03 +00:00
|
|
|
|
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, __v);
|
|
|
|
}
|
2023-12-18 14:01:33 -05:00
|
|
|
|
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)
|
|
|
|
__tree_.__insert_multi(__e, *__f);
|
|
|
|
}
|
|
|
|
|
2024-12-10 16:02:12 +01:00
|
|
|
# if _LIBCPP_STD_VER >= 23
|
2023-07-10 17:16:56 -07:00
|
|
|
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, std::forward<decltype(__element)>(__element));
|
|
|
|
}
|
2023-12-18 14:01:33 -05:00
|
|
|
}
|
2024-12-10 16:02:12 +01:00
|
|
|
# endif
|
2023-07-10 17:16:56 -07:00
|
|
|
|
2024-12-10 16:02:12 +01:00
|
|
|
# ifndef _LIBCPP_CXX03_LANG
|
2017-04-18 20:58:03 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI iterator insert(value_type&& __v) { return __tree_.__insert_multi(std::move(__v)); }
|
|
|
|
|
|
|
|
_LIBCPP_HIDE_FROM_ABI iterator insert(const_iterator __p, value_type&& __v) {
|
|
|
|
return __tree_.__insert_multi(__p, std::move(__v));
|
|
|
|
}
|
|
|
|
|
2010-05-11 19:42:16 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI void insert(initializer_list<value_type> __il) { insert(__il.begin(), __il.end()); }
|
2024-12-10 16:02:12 +01:00
|
|
|
# endif // _LIBCPP_CXX03_LANG
|
2010-05-11 19:42:16 +00:00
|
|
|
|
|
|
|
_LIBCPP_HIDE_FROM_ABI iterator erase(const_iterator __p) { return __tree_.erase(__p); }
|
|
|
|
_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, __l); }
|
2011-06-04 15:22:34 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI void clear() _NOEXCEPT { __tree_.clear(); }
|
2010-05-11 19:42:16 +00:00
|
|
|
|
2024-12-10 16:02:12 +01:00
|
|
|
# if _LIBCPP_STD_VER >= 17
|
2018-08-01 01:33:38 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI iterator insert(node_type&& __nh) {
|
2024-01-05 16:29:23 -08:00
|
|
|
_LIBCPP_ASSERT_COMPATIBLE_ALLOCATOR(__nh.empty() || __nh.get_allocator() == get_allocator(),
|
|
|
|
"node_type with incompatible allocator passed to multiset::insert()");
|
2018-08-01 01:33:38 +00:00
|
|
|
return __tree_.template __node_handle_insert_multi<node_type>(std::move(__nh));
|
|
|
|
}
|
|
|
|
_LIBCPP_HIDE_FROM_ABI iterator insert(const_iterator __hint, node_type&& __nh) {
|
2024-01-05 16:29:23 -08:00
|
|
|
_LIBCPP_ASSERT_COMPATIBLE_ALLOCATOR(__nh.empty() || __nh.get_allocator() == get_allocator(),
|
|
|
|
"node_type with incompatible allocator passed to multiset::insert()");
|
2018-08-01 01:33:38 +00:00
|
|
|
return __tree_.template __node_handle_insert_multi<node_type>(__hint, 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);
|
|
|
|
}
|
2018-11-01 14:41:37 +00:00
|
|
|
template <class _Compare2>
|
|
|
|
_LIBCPP_HIDE_FROM_ABI void merge(multiset<key_type, _Compare2, allocator_type>& __source) {
|
2024-01-05 16:29:23 -08:00
|
|
|
_LIBCPP_ASSERT_COMPATIBLE_ALLOCATOR(
|
2023-06-27 16:40:39 -07:00
|
|
|
__source.get_allocator() == get_allocator(), "merging container with incompatible allocator");
|
2018-10-31 17:31:35 +00:00
|
|
|
__tree_.__node_handle_merge_multi(__source.__tree_);
|
|
|
|
}
|
2018-11-01 14:41:37 +00:00
|
|
|
template <class _Compare2>
|
|
|
|
_LIBCPP_HIDE_FROM_ABI void merge(multiset<key_type, _Compare2, allocator_type>&& __source) {
|
2024-01-05 16:29:23 -08:00
|
|
|
_LIBCPP_ASSERT_COMPATIBLE_ALLOCATOR(
|
2023-06-27 16:40:39 -07:00
|
|
|
__source.get_allocator() == get_allocator(), "merging container with incompatible allocator");
|
2018-10-31 17:31:35 +00:00
|
|
|
__tree_.__node_handle_merge_multi(__source.__tree_);
|
|
|
|
}
|
2018-11-01 14:41:37 +00:00
|
|
|
template <class _Compare2>
|
|
|
|
_LIBCPP_HIDE_FROM_ABI void merge(set<key_type, _Compare2, allocator_type>& __source) {
|
2024-01-05 16:29:23 -08:00
|
|
|
_LIBCPP_ASSERT_COMPATIBLE_ALLOCATOR(
|
2023-06-27 16:40:39 -07:00
|
|
|
__source.get_allocator() == get_allocator(), "merging container with incompatible allocator");
|
2018-10-31 17:31:35 +00:00
|
|
|
__tree_.__node_handle_merge_multi(__source.__tree_);
|
|
|
|
}
|
2018-11-01 14:41:37 +00:00
|
|
|
template <class _Compare2>
|
|
|
|
_LIBCPP_HIDE_FROM_ABI void merge(set<key_type, _Compare2, allocator_type>&& __source) {
|
2024-01-05 16:29:23 -08:00
|
|
|
_LIBCPP_ASSERT_COMPATIBLE_ALLOCATOR(
|
2023-06-27 16:40:39 -07:00
|
|
|
__source.get_allocator() == get_allocator(), "merging container with incompatible allocator");
|
2018-10-31 17:31:35 +00:00
|
|
|
__tree_.__node_handle_merge_multi(__source.__tree_);
|
|
|
|
}
|
2024-12-10 16:02:12 +01:00
|
|
|
# endif
|
2018-08-01 01:33:38 +00:00
|
|
|
|
2024-06-18 11:01:43 +02:00
|
|
|
_LIBCPP_HIDE_FROM_ABI void swap(multiset& __s) _NOEXCEPT_(__is_nothrow_swappable_v<__base>) {
|
2011-06-04 15:22:34 +00:00
|
|
|
__tree_.swap(__s.__tree_);
|
|
|
|
}
|
2010-05-11 19:42:16 +00:00
|
|
|
|
2011-06-04 15:22:34 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI allocator_type get_allocator() const _NOEXCEPT { return __tree_.__alloc(); }
|
2010-05-11 19:42:16 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI key_compare key_comp() const { return __tree_.value_comp(); }
|
|
|
|
_LIBCPP_HIDE_FROM_ABI value_compare value_comp() const { return __tree_.value_comp(); }
|
|
|
|
|
|
|
|
// set operations:
|
|
|
|
_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); }
|
2024-12-10 16:02:12 +01:00
|
|
|
# if _LIBCPP_STD_VER >= 14
|
2024-05-08 10:34:55 +02:00
|
|
|
template <typename _K2, enable_if_t<__is_transparent_v<_Compare, _K2>, int> = 0>
|
2013-08-13 01:11:06 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI iterator find(const _K2& __k) {
|
|
|
|
return __tree_.find(__k);
|
|
|
|
}
|
2024-05-08 10:34:55 +02:00
|
|
|
template <typename _K2, enable_if_t<__is_transparent_v<_Compare, _K2>, int> = 0>
|
2013-08-13 01:11:06 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI const_iterator find(const _K2& __k) const {
|
|
|
|
return __tree_.find(__k);
|
|
|
|
}
|
2024-12-10 16:02:12 +01:00
|
|
|
# endif
|
2013-08-13 01:11:06 +00:00
|
|
|
|
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); }
|
2024-12-10 16:02:12 +01:00
|
|
|
# if _LIBCPP_STD_VER >= 14
|
2024-05-08 10:34:55 +02:00
|
|
|
template <typename _K2, enable_if_t<__is_transparent_v<_Compare, _K2>, int> = 0>
|
2018-01-07 17:39:57 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI size_type count(const _K2& __k) const {
|
|
|
|
return __tree_.__count_multi(__k);
|
|
|
|
}
|
2024-12-10 16:02:12 +01:00
|
|
|
# endif
|
2013-08-13 01:11:06 +00:00
|
|
|
|
2024-12-10 16:02:12 +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(); }
|
2024-05-08 10:34:55 +02:00
|
|
|
template <typename _K2, enable_if_t<__is_transparent_v<_Compare, _K2>, int> = 0>
|
2021-04-13 17:10:55 +02:00
|
|
|
_LIBCPP_HIDE_FROM_ABI bool contains(const _K2& __k) const {
|
|
|
|
return find(__k) != end();
|
|
|
|
}
|
2024-12-10 16:02:12 +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); }
|
2024-12-10 16:02:12 +01:00
|
|
|
# if _LIBCPP_STD_VER >= 14
|
2024-05-08 10:34:55 +02:00
|
|
|
template <typename _K2, enable_if_t<__is_transparent_v<_Compare, _K2>, int> = 0>
|
2013-08-13 01:11:06 +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
|
|
|
|
2024-05-08 10:34:55 +02:00
|
|
|
template <typename _K2, enable_if_t<__is_transparent_v<_Compare, _K2>, int> = 0>
|
2013-08-13 01:11:06 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI const_iterator lower_bound(const _K2& __k) const {
|
|
|
|
return __tree_.lower_bound(__k);
|
|
|
|
}
|
2024-12-10 16:02:12 +01:00
|
|
|
# endif
|
2013-08-13 01:11:06 +00:00
|
|
|
|
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); }
|
2024-12-10 16:02:12 +01:00
|
|
|
# if _LIBCPP_STD_VER >= 14
|
2024-05-08 10:34:55 +02:00
|
|
|
template <typename _K2, enable_if_t<__is_transparent_v<_Compare, _K2>, int> = 0>
|
2013-08-13 01:11:06 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI iterator upper_bound(const _K2& __k) {
|
|
|
|
return __tree_.upper_bound(__k);
|
|
|
|
}
|
2024-05-08 10:34:55 +02:00
|
|
|
template <typename _K2, enable_if_t<__is_transparent_v<_Compare, _K2>, int> = 0>
|
2013-08-13 01:11:06 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI const_iterator upper_bound(const _K2& __k) const {
|
|
|
|
return __tree_.upper_bound(__k);
|
|
|
|
}
|
2024-12-10 16:02:12 +01:00
|
|
|
# endif
|
2013-08-13 01:11:06 +00:00
|
|
|
|
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);
|
|
|
|
}
|
2024-12-10 16:02:12 +01:00
|
|
|
# if _LIBCPP_STD_VER >= 14
|
2024-05-08 10:34:55 +02:00
|
|
|
template <typename _K2, enable_if_t<__is_transparent_v<_Compare, _K2>, int> = 0>
|
2013-08-13 01:11:06 +00:00
|
|
|
_LIBCPP_HIDE_FROM_ABI pair<iterator, iterator> equal_range(const _K2& __k) {
|
|
|
|
return __tree_.__equal_range_multi(__k);
|
|
|
|
}
|
2024-05-08 10:34:55 +02:00
|
|
|
template <typename _K2, enable_if_t<__is_transparent_v<_Compare, _K2>, int> = 0>
|
2023-08-15 12:19:05 -07:00
|
|
|
_LIBCPP_HIDE_FROM_ABI pair<const_iterator, const_iterator> equal_range(const _K2& __k) const {
|
2013-08-13 01:11:06 +00:00
|
|
|
return __tree_.__equal_range_multi(__k);
|
|
|
|
}
|
2024-12-10 16:02:12 +01:00
|
|
|
# endif
|
2010-05-11 19:42:16 +00:00
|
|
|
};
|
|
|
|
|
2024-12-10 16:02:12 +01:00
|
|
|
# if _LIBCPP_STD_VER >= 17
|
2019-06-11 18:21:08 +00:00
|
|
|
template <class _InputIterator,
|
2021-03-03 23:02:20 -05:00
|
|
|
class _Compare = less<__iter_value_type<_InputIterator>>,
|
|
|
|
class _Allocator = allocator<__iter_value_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<_Allocator>::value, void>,
|
|
|
|
class = enable_if_t<!__is_allocator<_Compare>::value, void>>
|
2019-06-11 18:21:08 +00:00
|
|
|
multiset(_InputIterator, _InputIterator, _Compare = _Compare(), _Allocator = _Allocator())
|
2021-03-03 23:02:20 -05:00
|
|
|
-> multiset<__iter_value_type<_InputIterator>, _Compare, _Allocator>;
|
2019-06-11 18:21:08 +00:00
|
|
|
|
2024-12-10 16:02:12 +01:00
|
|
|
# if _LIBCPP_STD_VER >= 23
|
2023-07-10 17:16:56 -07:00
|
|
|
template <ranges::input_range _Range,
|
|
|
|
class _Compare = less<ranges::range_value_t<_Range>>,
|
|
|
|
class _Allocator = allocator<ranges::range_value_t<_Range>>,
|
|
|
|
class = enable_if_t<__is_allocator<_Allocator>::value, void>,
|
|
|
|
class = enable_if_t<!__is_allocator<_Compare>::value, void>>
|
|
|
|
multiset(from_range_t, _Range&&, _Compare = _Compare(), _Allocator = _Allocator())
|
|
|
|
-> multiset<ranges::range_value_t<_Range>, _Compare, _Allocator>;
|
2024-12-10 16:02:12 +01:00
|
|
|
# endif
|
2023-12-18 14:01:33 -05:00
|
|
|
|
2019-06-11 18:21:08 +00:00
|
|
|
template <class _Key,
|
|
|
|
class _Compare = less<_Key>,
|
|
|
|
class _Allocator = allocator<_Key>,
|
[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>,
|
|
|
|
class = enable_if_t<!__is_allocator<_Compare>::value, void>>
|
2019-06-11 18:21:08 +00:00
|
|
|
multiset(initializer_list<_Key>,
|
|
|
|
_Compare = _Compare(),
|
|
|
|
_Allocator = _Allocator()) -> multiset<_Key, _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-11 18:21:08 +00:00
|
|
|
multiset(_InputIterator, _InputIterator, _Allocator)
|
2021-03-03 23:02:20 -05:00
|
|
|
-> multiset<__iter_value_type<_InputIterator>, less<__iter_value_type<_InputIterator>>, _Allocator>;
|
2019-06-11 18:21:08 +00:00
|
|
|
|
2024-12-10 16:02:12 +01:00
|
|
|
# if _LIBCPP_STD_VER >= 23
|
2023-07-10 17:16:56 -07:00
|
|
|
template <ranges::input_range _Range, class _Allocator, class = enable_if_t<__is_allocator<_Allocator>::value, void>>
|
|
|
|
multiset(from_range_t,
|
|
|
|
_Range&&,
|
|
|
|
_Allocator) -> multiset<ranges::range_value_t<_Range>, less<ranges::range_value_t<_Range>>, _Allocator>;
|
2024-12-10 16:02:12 +01:00
|
|
|
# endif
|
2023-07-10 17:16:56 -07:00
|
|
|
|
[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 _Allocator, class = enable_if_t<__is_allocator<_Allocator>::value, void>>
|
2019-06-11 18:21:08 +00:00
|
|
|
multiset(initializer_list<_Key>, _Allocator) -> multiset<_Key, less<_Key>, _Allocator>;
|
2024-12-10 16:02:12 +01:00
|
|
|
# endif
|
2019-06-11 18:21:08 +00:00
|
|
|
|
2024-12-10 16:02:12 +01:00
|
|
|
# ifndef _LIBCPP_CXX03_LANG
|
2010-05-11 19:42:16 +00:00
|
|
|
|
|
|
|
template <class _Key, class _Compare, class _Allocator>
|
|
|
|
multiset<_Key, _Compare, _Allocator>::multiset(multiset&& __s, const allocator_type& __a)
|
2011-06-30 21:18:19 +00:00
|
|
|
: __tree_(std::move(__s.__tree_), __a) {
|
2010-05-11 19:42:16 +00:00
|
|
|
if (__a != __s.get_allocator()) {
|
|
|
|
const_iterator __e = cend();
|
|
|
|
while (!__s.empty())
|
2011-06-30 21:18:19 +00:00
|
|
|
insert(__e, std::move(__s.__tree_.remove(__s.begin())->__value_));
|
2010-05-11 19:42:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-12-10 16:02:12 +01:00
|
|
|
# endif // _LIBCPP_CXX03_LANG
|
2010-05-11 19:42:16 +00:00
|
|
|
|
|
|
|
template <class _Key, class _Compare, class _Allocator>
|
2010-09-23 16:27:36 +00:00
|
|
|
inline _LIBCPP_HIDE_FROM_ABI bool
|
2010-05-11 19:42:16 +00:00
|
|
|
operator==(const multiset<_Key, _Compare, _Allocator>& __x, const multiset<_Key, _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
|
|
|
}
|
|
|
|
|
2024-12-10 16:02:12 +01:00
|
|
|
# if _LIBCPP_STD_VER <= 17
|
2023-05-22 23:33:45 +03:00
|
|
|
|
2010-05-11 19:42:16 +00:00
|
|
|
template <class _Key, class _Compare, class _Allocator>
|
2010-09-23 16:27:36 +00:00
|
|
|
inline _LIBCPP_HIDE_FROM_ABI bool
|
2010-05-11 19:42:16 +00:00
|
|
|
operator<(const multiset<_Key, _Compare, _Allocator>& __x, const multiset<_Key, _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 _Compare, class _Allocator>
|
2010-09-23 16:27:36 +00:00
|
|
|
inline _LIBCPP_HIDE_FROM_ABI bool
|
2010-05-11 19:42:16 +00:00
|
|
|
operator!=(const multiset<_Key, _Compare, _Allocator>& __x, const multiset<_Key, _Compare, _Allocator>& __y) {
|
|
|
|
return !(__x == __y);
|
|
|
|
}
|
|
|
|
|
|
|
|
template <class _Key, class _Compare, class _Allocator>
|
2010-09-23 16:27:36 +00:00
|
|
|
inline _LIBCPP_HIDE_FROM_ABI bool
|
2010-05-11 19:42:16 +00:00
|
|
|
operator>(const multiset<_Key, _Compare, _Allocator>& __x, const multiset<_Key, _Compare, _Allocator>& __y) {
|
|
|
|
return __y < __x;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <class _Key, class _Compare, class _Allocator>
|
2010-09-23 16:27:36 +00:00
|
|
|
inline _LIBCPP_HIDE_FROM_ABI bool
|
2010-05-11 19:42:16 +00:00
|
|
|
operator>=(const multiset<_Key, _Compare, _Allocator>& __x, const multiset<_Key, _Compare, _Allocator>& __y) {
|
|
|
|
return !(__x < __y);
|
|
|
|
}
|
|
|
|
|
|
|
|
template <class _Key, class _Compare, class _Allocator>
|
2010-09-23 16:27:36 +00:00
|
|
|
inline _LIBCPP_HIDE_FROM_ABI bool
|
2010-05-11 19:42:16 +00:00
|
|
|
operator<=(const multiset<_Key, _Compare, _Allocator>& __x, const multiset<_Key, _Compare, _Allocator>& __y) {
|
|
|
|
return !(__y < __x);
|
|
|
|
}
|
|
|
|
|
2024-12-10 16:02:12 +01:00
|
|
|
# else // _LIBCPP_STD_VER <= 17
|
2023-05-22 23:33:45 +03:00
|
|
|
|
2025-02-15 20:15:32 +01:00
|
|
|
template <class _Key, class _Compare, class _Allocator>
|
2023-05-22 23:33:45 +03:00
|
|
|
_LIBCPP_HIDE_FROM_ABI __synth_three_way_result<_Key>
|
2025-02-15 20:15:32 +01:00
|
|
|
operator<=>(const multiset<_Key, _Compare, _Allocator>& __x, const multiset<_Key, _Compare, _Allocator>& __y) {
|
2024-08-30 12:07:07 -04:00
|
|
|
return std::lexicographical_compare_three_way(__x.begin(), __x.end(), __y.begin(), __y.end(), __synth_three_way);
|
2023-05-22 23:33:45 +03:00
|
|
|
}
|
|
|
|
|
2024-12-10 16:02:12 +01:00
|
|
|
# endif // _LIBCPP_STD_VER <= 17
|
2023-05-22 23:33:45 +03:00
|
|
|
|
2010-05-11 19:42:16 +00:00
|
|
|
template <class _Key, class _Compare, class _Allocator>
|
2010-09-23 16:27:36 +00:00
|
|
|
inline _LIBCPP_HIDE_FROM_ABI void
|
2010-05-11 19:42:16 +00:00
|
|
|
swap(multiset<_Key, _Compare, _Allocator>& __x, multiset<_Key, _Compare, _Allocator>& __y)
|
2011-06-04 15:22:34 +00:00
|
|
|
_NOEXCEPT_(_NOEXCEPT_(__x.swap(__y))) {
|
2010-05-11 19:42:16 +00:00
|
|
|
__x.swap(__y);
|
|
|
|
}
|
|
|
|
|
2024-12-10 16:02:12 +01:00
|
|
|
# if _LIBCPP_STD_VER >= 20
|
2018-12-14 18:49:35 +00:00
|
|
|
template <class _Key, class _Compare, class _Allocator, class _Predicate>
|
2020-05-02 13:58:03 +02:00
|
|
|
inline _LIBCPP_HIDE_FROM_ABI typename multiset<_Key, _Compare, _Allocator>::size_type
|
|
|
|
erase_if(multiset<_Key, _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
|
|
|
}
|
2024-12-10 16:02:12 +01:00
|
|
|
# endif
|
2018-12-14 18:49:35 +00:00
|
|
|
|
2024-10-12 18:29:59 +01:00
|
|
|
template <class _Key, class _Compare, class _Allocator>
|
|
|
|
struct __container_traits<multiset<_Key, _Compare, _Allocator> > {
|
|
|
|
// http://eel.is/c++draft/associative.reqmts.except#2
|
|
|
|
// For associative containers, if an exception is thrown by any operation from within
|
|
|
|
// an insert or emplace function inserting a single element, the insertion has no effect.
|
|
|
|
static _LIBCPP_CONSTEXPR const bool __emplacement_has_strong_exception_safety_guarantee = true;
|
|
|
|
};
|
|
|
|
|
2010-05-11 19:42:16 +00:00
|
|
|
_LIBCPP_END_NAMESPACE_STD
|
|
|
|
|
2024-12-10 16:02:12 +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 _CompareT = std::less<_KeyT>>
|
2023-03-29 16:48:20 -04:00
|
|
|
using set _LIBCPP_AVAILABILITY_PMR = std::set<_KeyT, _CompareT, polymorphic_allocator<_KeyT>>;
|
2022-10-06 16:53:30 -04:00
|
|
|
|
|
|
|
template <class _KeyT, class _CompareT = std::less<_KeyT>>
|
2023-03-29 16:48:20 -04:00
|
|
|
using multiset _LIBCPP_AVAILABILITY_PMR = std::multiset<_KeyT, _CompareT, polymorphic_allocator<_KeyT>>;
|
2022-10-06 16:53:30 -04:00
|
|
|
} // namespace pmr
|
|
|
|
_LIBCPP_END_NAMESPACE_STD
|
2024-12-10 16:02:12 +01:00
|
|
|
# endif
|
2022-10-06 16:53:30 -04: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_POP_MACROS
|
|
|
|
|
2024-12-10 16:02:12 +01:00
|
|
|
# if !defined(_LIBCPP_REMOVE_TRANSITIVE_INCLUDES) && _LIBCPP_STD_VER <= 20
|
|
|
|
# include <concepts>
|
|
|
|
# include <cstdlib>
|
|
|
|
# include <functional>
|
|
|
|
# include <iterator>
|
|
|
|
# include <stdexcept>
|
|
|
|
# include <type_traits>
|
|
|
|
# endif
|
2024-12-21 13:01:48 +01:00
|
|
|
#endif // __cplusplus < 201103L && defined(_LIBCPP_USE_FROZEN_CXX03_HEADERS)
|
2022-09-02 17:53:28 +02:00
|
|
|
|
2021-04-20 12:03:32 -04:00
|
|
|
#endif // _LIBCPP_SET
|