// -*- C++ -*- //===----------------------------------------------------------------------===// // // 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 // //===----------------------------------------------------------------------===// #ifndef _LIBCPP_FLAT_SET #define _LIBCPP_FLAT_SET /* Header synopsis #include // see [compare.syn] #include // see [initializer.list.syn] namespace std { struct sorted_unique_t { explicit sorted_unique_t() = default; }; inline constexpr sorted_unique_t sorted_unique{}; // [flat.set], class template flat_set template, class KeyContainer = vector> class flat_set { public: // types using key_type = Key; using value_type = Key; using key_compare = Compare; using value_compare = Compare; using reference = value_type&; using const_reference = const value_type&; using size_type = KeyContainer::size_type; using difference_type = KeyContainer::difference_type; using iterator = implementation-defined; // see [container.requirements] using const_iterator = implementation-defined; // see [container.requirements] using reverse_iterator = std::reverse_iterator; using const_reverse_iterator = std::reverse_iterator; using container_type = KeyContainer; // [flat.set.cons], constructors constexpr flat_set() : flat_set(key_compare()) { } constexpr flat_set(const flat_set&); constexpr flat_set(flat_set&&); constexpr flat_set& operator=(const flat_set&); constexpr flat_set& operator=(flat_set&&); constexpr explicit flat_set(const key_compare& comp) : c(), compare(comp) { } constexpr explicit flat_set(container_type cont, const key_compare& comp = key_compare()); constexpr flat_set(sorted_unique_t, container_type cont, const key_compare& comp = key_compare()) : c(std::move(cont)), compare(comp) { } template constexpr flat_set(InputIterator first, InputIterator last, const key_compare& comp = key_compare()) : c(), compare(comp) { insert(first, last); } template constexpr flat_set(sorted_unique_t, InputIterator first, InputIterator last, const key_compare& comp = key_compare()) : c(first, last), compare(comp) { } template R> constexpr flat_set(from_range_t, R&& rg) : flat_set(from_range, std::forward(rg), key_compare()) { } template R> constexpr flat_set(from_range_t, R&& rg, const key_compare& comp) : flat_set(comp) { insert_range(std::forward(rg)); } constexpr flat_set(initializer_list il, const key_compare& comp = key_compare()) : flat_set(il.begin(), il.end(), comp) { } constexpr flat_set(sorted_unique_t, initializer_list il, const key_compare& comp = key_compare()) : flat_set(sorted_unique, il.begin(), il.end(), comp) { } // [flat.set.cons.alloc], constructors with allocators template constexpr explicit flat_set(const Alloc& a); template constexpr flat_set(const key_compare& comp, const Alloc& a); template constexpr flat_set(const container_type& cont, const Alloc& a); template constexpr flat_set(const container_type& cont, const key_compare& comp, const Alloc& a); template constexpr flat_set(sorted_unique_t, const container_type& cont, const Alloc& a); template constexpr flat_set(sorted_unique_t, const container_type& cont, const key_compare& comp, const Alloc& a); template constexpr flat_set(const flat_set&, const Alloc& a); template constexpr flat_set(flat_set&&, const Alloc& a); template constexpr flat_set(InputIterator first, InputIterator last, const Alloc& a); template constexpr flat_set(InputIterator first, InputIterator last, const key_compare& comp, const Alloc& a); template constexpr flat_set(sorted_unique_t, InputIterator first, InputIterator last, const Alloc& a); template constexpr flat_set(sorted_unique_t, InputIterator first, InputIterator last, const key_compare& comp, const Alloc& a); template R, class Alloc> constexpr flat_set(from_range_t, R&& rg, const Alloc& a); template R, class Alloc> constexpr flat_set(from_range_t, R&& rg, const key_compare& comp, const Alloc& a); template constexpr flat_set(initializer_list il, const Alloc& a); template constexpr flat_set(initializer_list il, const key_compare& comp, const Alloc& a); template constexpr flat_set(sorted_unique_t, initializer_list il, const Alloc& a); template constexpr flat_set(sorted_unique_t, initializer_list il, const key_compare& comp, const Alloc& a); constexpr flat_set& operator=(initializer_list); // iterators constexpr iterator begin() noexcept; constexpr const_iterator begin() const noexcept; constexpr iterator end() noexcept; constexpr const_iterator end() const noexcept; constexpr reverse_iterator rbegin() noexcept; constexpr const_reverse_iterator rbegin() const noexcept; constexpr reverse_iterator rend() noexcept; constexpr const_reverse_iterator rend() const noexcept; constexpr const_iterator cbegin() const noexcept; constexpr const_iterator cend() const noexcept; constexpr const_reverse_iterator crbegin() const noexcept; constexpr const_reverse_iterator crend() const noexcept; // capacity constexpr bool empty() const noexcept; constexpr size_type size() const noexcept; constexpr size_type max_size() const noexcept; // [flat.set.modifiers], modifiers template constexpr pair emplace(Args&&... args); template constexpr iterator emplace_hint(const_iterator position, Args&&... args); constexpr pair insert(const value_type& x) { return emplace(x); } constexpr pair insert(value_type&& x) { return emplace(std::move(x)); } template constexpr pair insert(K&& x); constexpr iterator insert(const_iterator position, const value_type& x) { return emplace_hint(position, x); } constexpr iterator insert(const_iterator position, value_type&& x) { return emplace_hint(position, std::move(x)); } template constexpr iterator insert(const_iterator hint, K&& x); template constexpr void insert(InputIterator first, InputIterator last); template constexpr void insert(sorted_unique_t, InputIterator first, InputIterator last); template R> constexpr void insert_range(R&& rg); template R> constexpr void insert_range(sorted_unique_t, R&& rg); constexpr void insert(initializer_list il) { insert(il.begin(), il.end()); } constexpr void insert(sorted_unique_t, initializer_list il) { insert(sorted_unique, il.begin(), il.end()); } constexpr container_type extract() &&; constexpr void replace(container_type&&); constexpr iterator erase(iterator position) requires (!same_as); constexpr iterator erase(const_iterator position); constexpr size_type erase(const key_type& x); template constexpr size_type erase(K&& x); constexpr iterator erase(const_iterator first, const_iterator last); constexpr void swap(flat_set& y) noexcept(see below); constexpr void clear() noexcept; // observers constexpr key_compare key_comp() const; constexpr value_compare value_comp() const; // set operations constexpr iterator find(const key_type& x); constexpr const_iterator find(const key_type& x) const; template constexpr iterator find(const K& x); template constexpr const_iterator find(const K& x) const; constexpr size_type count(const key_type& x) const; template constexpr size_type count(const K& x) const; constexpr bool contains(const key_type& x) const; template constexpr bool contains(const K& x) const; constexpr iterator lower_bound(const key_type& x); constexpr const_iterator lower_bound(const key_type& x) const; template constexpr iterator lower_bound(const K& x); template constexpr const_iterator lower_bound(const K& x) const; constexpr iterator upper_bound(const key_type& x); constexpr const_iterator upper_bound(const key_type& x) const; template constexpr iterator upper_bound(const K& x); template constexpr const_iterator upper_bound(const K& x) const; constexpr pair equal_range(const key_type& x); constexpr pair equal_range(const key_type& x) const; template constexpr pair equal_range(const K& x); template constexpr pair equal_range(const K& x) const; friend constexpr bool operator==(const flat_set& x, const flat_set& y); friend constexpr synth-three-way-result operator<=>(const flat_set& x, const flat_set& y); friend constexpr void swap(flat_set& x, flat_set& y) noexcept(noexcept(x.swap(y))) { x.swap(y); } private: container_type c; // exposition only key_compare compare; // exposition only }; template> flat_set(KeyContainer, Compare = Compare()) -> flat_set; template flat_set(KeyContainer, Allocator) -> flat_set, KeyContainer>; template flat_set(KeyContainer, Compare, Allocator) -> flat_set; template> flat_set(sorted_unique_t, KeyContainer, Compare = Compare()) -> flat_set; template flat_set(sorted_unique_t, KeyContainer, Allocator) -> flat_set, KeyContainer>; template flat_set(sorted_unique_t, KeyContainer, Compare, Allocator) -> flat_set; template>> flat_set(InputIterator, InputIterator, Compare = Compare()) -> flat_set, Compare>; template>> flat_set(sorted_unique_t, InputIterator, InputIterator, Compare = Compare()) -> flat_set, Compare>; template>, class Allocator = allocator>> flat_set(from_range_t, R&&, Compare = Compare(), Allocator = Allocator()) -> flat_set, Compare, vector, alloc-rebind>>>; template flat_set(from_range_t, R&&, Allocator) -> flat_set, less>, vector, alloc-rebind>>>; template> flat_set(initializer_list, Compare = Compare()) -> flat_set; template> flat_set(sorted_unique_t, initializer_list, Compare = Compare()) -> flat_set; template struct uses_allocator, Allocator> : bool_constant> { }; // [flat.set.erasure], erasure for flat_set template typename flat_set::size_type erase_if(flat_set& c, Predicate pred); struct sorted_equivalent_t { explicit sorted_equivalent_t() = default; }; inline constexpr sorted_equivalent_t sorted_equivalent{}; // [flat.multiset], class template flat_multiset template, class KeyContainer = vector> class flat_multiset { public: // types using key_type = Key; using value_type = Key; using key_compare = Compare; using value_compare = Compare; using reference = value_type&; using const_reference = const value_type&; using size_type = KeyContainer::size_type; using difference_type = KeyContainer::difference_type; using iterator = implementation-defined; // see [container.requirements] using const_iterator = implementation-defined; // see [container.requirements] using reverse_iterator = std::reverse_iterator; using const_reverse_iterator = std::reverse_iterator; using container_type = KeyContainer; // [flat.multiset.cons], constructors constexpr flat_multiset() : flat_multiset(key_compare()) { } constexpr flat_multiset(const flat_multiset&); constexpr flat_multiset(flat_multiset&&); constexpr flat_multiset& operator=(const flat_multiset&); constexpr flat_multiset& operator=(flat_multiset&&); constexpr explicit flat_multiset(const key_compare& comp) : c(), compare(comp) { } constexpr explicit flat_multiset(container_type cont, const key_compare& comp = key_compare()); constexpr flat_multiset(sorted_equivalent_t, container_type cont, const key_compare& comp = key_compare()) : c(std::move(cont)), compare(comp) { } template constexpr flat_multiset(InputIterator first, InputIterator last, const key_compare& comp = key_compare()) : c(), compare(comp) { insert(first, last); } template constexpr flat_multiset(sorted_equivalent_t, InputIterator first, InputIterator last, const key_compare& comp = key_compare()) : c(first, last), compare(comp) { } template R> constexpr flat_multiset(from_range_t, R&& rg) : flat_multiset(from_range, std::forward(rg), key_compare()) { } template R> constexpr flat_multiset(from_range_t, R&& rg, const key_compare& comp) : flat_multiset(comp) { insert_range(std::forward(rg)); } constexpr flat_multiset(initializer_list il, const key_compare& comp = key_compare()) : flat_multiset(il.begin(), il.end(), comp) { } constexpr flat_multiset(sorted_equivalent_t, initializer_list il, const key_compare& comp = key_compare()) : flat_multiset(sorted_equivalent, il.begin(), il.end(), comp) { } // [flat.multiset.cons.alloc], constructors with allocators template constexpr explicit flat_multiset(const Alloc& a); template constexpr flat_multiset(const key_compare& comp, const Alloc& a); template constexpr flat_multiset(const container_type& cont, const Alloc& a); template constexpr flat_multiset(const container_type& cont, const key_compare& comp, const Alloc& a); template constexpr flat_multiset(sorted_equivalent_t, const container_type& cont, const Alloc& a); template constexpr flat_multiset(sorted_equivalent_t, const container_type& cont, const key_compare& comp, const Alloc& a); template constexpr flat_multiset(const flat_multiset&, const Alloc& a); template constexpr flat_multiset(flat_multiset&&, const Alloc& a); template constexpr flat_multiset(InputIterator first, InputIterator last, const Alloc& a); template constexpr flat_multiset(InputIterator first, InputIterator last, const key_compare& comp, const Alloc& a); template constexpr flat_multiset(sorted_equivalent_t, InputIterator first, InputIterator last, const Alloc& a); template constexpr flat_multiset(sorted_equivalent_t, InputIterator first, InputIterator last, const key_compare& comp, const Alloc& a); template R, class Alloc> constexpr flat_multiset(from_range_t, R&& rg, const Alloc& a); template R, class Alloc> constexpr flat_multiset(from_range_t, R&& rg, const key_compare& comp, const Alloc& a); template constexpr flat_multiset(initializer_list il, const Alloc& a); template constexpr flat_multiset(initializer_list il, const key_compare& comp, const Alloc& a); template constexpr flat_multiset(sorted_equivalent_t, initializer_list il, const Alloc& a); template constexpr flat_multiset(sorted_equivalent_t, initializer_list il, const key_compare& comp, const Alloc& a); constexpr flat_multiset& operator=(initializer_list); // iterators constexpr iterator begin() noexcept; constexpr const_iterator begin() const noexcept; constexpr iterator end() noexcept; constexpr const_iterator end() const noexcept; constexpr reverse_iterator rbegin() noexcept; constexpr const_reverse_iterator rbegin() const noexcept; constexpr reverse_iterator rend() noexcept; constexpr const_reverse_iterator rend() const noexcept; constexpr const_iterator cbegin() const noexcept; constexpr const_iterator cend() const noexcept; constexpr const_reverse_iterator crbegin() const noexcept; constexpr const_reverse_iterator crend() const noexcept; // capacity constexpr bool empty() const noexcept; constexpr size_type size() const noexcept; constexpr size_type max_size() const noexcept; // [flat.multiset.modifiers], modifiers template constexpr iterator emplace(Args&&... args); template constexpr iterator emplace_hint(const_iterator position, Args&&... args); constexpr iterator insert(const value_type& x) { return emplace(x); } constexpr iterator insert(value_type&& x) { return emplace(std::move(x)); } constexpr iterator insert(const_iterator position, const value_type& x) { return emplace_hint(position, x); } constexpr iterator insert(const_iterator position, value_type&& x) { return emplace_hint(position, std::move(x)); } template constexpr void insert(InputIterator first, InputIterator last); template constexpr void insert(sorted_equivalent_t, InputIterator first, InputIterator last); template R> constexpr void insert_range(R&& rg); template R> constexpr void insert_range(sorted_equivalent_t, R&& rg); constexpr void insert(initializer_list il) { insert(il.begin(), il.end()); } constexpr void insert(sorted_equivalent_t, initializer_list il) { insert(sorted_equivalent, il.begin(), il.end()); } constexpr container_type extract() &&; constexpr void replace(container_type&&); constexpr iterator erase(iterator position) requires (!same_as); constexpr iterator erase(const_iterator position); constexpr size_type erase(const key_type& x); template constexpr size_type erase(K&& x); constexpr iterator erase(const_iterator first, const_iterator last); constexpr void swap(flat_multiset& y) noexcept(see below); constexpr void clear() noexcept; // observers constexpr key_compare key_comp() const; constexpr value_compare value_comp() const; // set operations constexpr iterator find(const key_type& x); constexpr const_iterator find(const key_type& x) const; template constexpr iterator find(const K& x); template constexpr const_iterator find(const K& x) const; constexpr size_type count(const key_type& x) const; template constexpr size_type count(const K& x) const; constexpr bool contains(const key_type& x) const; template constexpr bool contains(const K& x) const; constexpr iterator lower_bound(const key_type& x); constexpr const_iterator lower_bound(const key_type& x) const; template constexpr iterator lower_bound(const K& x); template constexpr const_iterator lower_bound(const K& x) const; constexpr iterator upper_bound(const key_type& x); constexpr const_iterator upper_bound(const key_type& x) const; template constexpr iterator upper_bound(const K& x); template constexpr const_iterator upper_bound(const K& x) const; constexpr pair equal_range(const key_type& x); constexpr pair equal_range(const key_type& x) const; template constexpr pair equal_range(const K& x); template constexpr pair equal_range(const K& x) const; friend constexpr bool operator==(const flat_multiset& x, const flat_multiset& y); friend constexpr synth-three-way-result operator<=>(const flat_multiset& x, const flat_multiset& y); friend constexpr void swap(flat_multiset& x, flat_multiset& y) noexcept(noexcept(x.swap(y))) { x.swap(y); } private: container_type c; // exposition only key_compare compare; // exposition only }; template> flat_multiset(KeyContainer, Compare = Compare()) -> flat_multiset; template flat_multiset(KeyContainer, Allocator) -> flat_multiset, KeyContainer>; template flat_multiset(KeyContainer, Compare, Allocator) -> flat_multiset; template> flat_multiset(sorted_equivalent_t, KeyContainer, Compare = Compare()) -> flat_multiset; template flat_multiset(sorted_equivalent_t, KeyContainer, Allocator) -> flat_multiset, KeyContainer>; template flat_multiset(sorted_equivalent_t, KeyContainer, Compare, Allocator) -> flat_multiset; template>> flat_multiset(InputIterator, InputIterator, Compare = Compare()) -> flat_multiset, Compare>; template>> flat_multiset(sorted_equivalent_t, InputIterator, InputIterator, Compare = Compare()) -> flat_multiset, Compare>; template>, class Allocator = allocator>> flat_multiset(from_range_t, R&&, Compare = Compare(), Allocator = Allocator()) -> flat_multiset, Compare, vector, alloc-rebind>>>; template flat_multiset(from_range_t, R&&, Allocator) -> flat_multiset, less>, vector, alloc-rebind>>>; template> flat_multiset(initializer_list, Compare = Compare()) -> flat_multiset; template> flat_multiset(sorted_equivalent_t, initializer_list, Compare = Compare()) -> flat_multiset; template struct uses_allocator, Allocator> : bool_constant> { }; // [flat.multiset.erasure], erasure for flat_multiset template typename flat_multiset::size_type erase_if(flat_multiset& c, Predicate pred); } */ #if __cplusplus < 201103L && defined(_LIBCPP_USE_FROZEN_CXX03_HEADERS) # include <__cxx03/__config> #else # include <__config> # if _LIBCPP_STD_VER >= 23 # include <__flat_map/sorted_equivalent.h> # include <__flat_map/sorted_unique.h> # include <__flat_set/flat_multiset.h> # include <__flat_set/flat_set.h> # endif // for feature-test macros # include // standard required includes // [iterator.range] # include <__iterator/access.h> # include <__iterator/data.h> # include <__iterator/empty.h> # include <__iterator/reverse_access.h> # include <__iterator/size.h> // [flat.set.syn] # include # include # if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header # endif #endif // __cplusplus < 201103L && defined(_LIBCPP_USE_FROZEN_CXX03_HEADERS) #endif // _LIBCPP_FLAT_SET