std::flat_set(C++17) | ||||
| Sequence | ||||
(C++11) | ||||
(C++26) | ||||
(C++26) | ||||
(C++11) | ||||
| Associative | ||||
| Unordered associative | ||||
(C++11) | ||||
(C++11) | ||||
(C++11) | ||||
(C++11) | ||||
| Adaptors | ||||
(C++23) | ||||
(C++23) | ||||
(C++23) | ||||
(C++23) | ||||
| Views | ||||
(C++20) | ||||
(C++23) | ||||
| Tables | ||||
| Iterator invalidation | ||||
| Member function table | ||||
| Non-member function table |
Defined in header <flat_set> | ||
template<class KeyContainer, class Compare=std::less<typename KeyContainer::value_type>> | (1) | (since C++23) |
template<class KeyContainer,class Allocator> flat_set( KeyContainer, Allocator) | (2) | (since C++23) |
template<class KeyContainer,class Compare,class Allocator> flat_set( KeyContainer, Compare, Allocator) | (3) | (since C++23) |
template<class KeyContainer, class Compare=std::less<typename KeyContainer::value_type>> | (4) | (since C++23) |
template<class KeyContainer,class Allocator> flat_set(std::sorted_unique_t, KeyContainer, Allocator) | (5) | (since C++23) |
template<class KeyContainer,class Compare,class Allocator> flat_set(std::sorted_unique_t, KeyContainer, Compare, Allocator) | (6) | (since C++23) |
template<class InputIt, class Compare=std::less</*iter-val-t*/<InputIt>>> | (7) | (since C++23) |
template<class InputIt, class Compare=std::less</*iter-val-t*/<InputIt>>> | (8) | (since C++23) |
template<ranges::input_range R, class Compare=std::less<ranges::range_value_t<R>>, | (9) | (since C++23) |
template<ranges::input_range R,class Allocator> flat_set(std::from_range_t, R&&, Allocator) | (10) | (since C++23) |
template<class Key,class Compare=std::less<Key>> flat_set(std::initializer_list<Key>, Compare= Compare()) | (11) | (since C++23) |
template<class Key,class Compare=std::less<Key>> flat_set(std::sorted_unique_t, | (12) | (since C++23) |
Exposition-only helper type aliases | ||
template<class InputIt> using/*iter-val-t*/= | (exposition only*) | |
template<class Allocator,class T> using/*alloc-rebind*/= | (exposition only*) | |
Thesededuction guides are provided for to allow deduction from:
These overloads participate in overload resolution only ifInputIt satisfiesLegacyInputIterator,Alloc satisfiesAllocator, andComp does not satisfyAllocator.
Note: the extent to which the library determines that a type does not satisfyLegacyInputIterator is unspecified, except that as a minimum integral types do not qualify as input iterators. Likewise, the extent to which it determines that a type does not satisfyAllocator is unspecified, except that as a minimum the member typeAlloc::value_type must exist and the expressionstd::declval<Alloc&>().allocate(std::size_t{}) must be well-formed when treated as an unevaluated operand.
| This section is incomplete Reason: no example |