std::flat_set
的推导指引
在标头 <flat_set> 定义 | ||
template<class KeyContainer, class Compare =std::less<typename KeyContainer::value_type>> | (1) | (C++23 起) |
template<class KeyContainer, class Allocator > flat_set( KeyContainer, Allocator ) | (2) | (C++23 起) |
template<class KeyContainer, class Compare, class Allocator > flat_set( KeyContainer, Compare, Allocator ) | (3) | (C++23 起) |
template<class KeyContainer, class Compare =std::less<typename KeyContainer::value_type>> | (4) | (C++23 起) |
template<class KeyContainer, class Allocator > flat_set(std::sorted_unique_t, KeyContainer, Allocator ) | (5) | (C++23 起) |
template<class KeyContainer, class Compare, class Allocator > flat_set(std::sorted_unique_t, KeyContainer, Compare, Allocator ) | (6) | (C++23 起) |
template<class InputIt, class Compare =std::less</*iter-val-t*/<InputIt>>> | (7) | (C++23 起) |
template<class InputIt, class Compare =std::less</*iter-val-t*/<InputIt>>> | (8) | (C++23 起) |
template<ranges::input_range R, class Compare =std::less<ranges::range_value_t<R>>, | (9) | (C++23 起) |
template<ranges::input_range R, class Allocator > flat_set(std::from_range_t, R&&, Allocator ) | (10) | (C++23 起) |
template<class Key, class Compare =std::less<Key>> flat_set(std::initializer_list<Key>, Compare = Compare()) | (11) | (C++23 起) |
template<class Key, class Compare =std::less<Key>> flat_set(std::sorted_unique_t, | (12) | (C++23 起) |
仅用于阐释的辅助类型别名 | ||
template<class InputIt > using/*iter-val-t*/= | (仅用于阐述*) | |
template<class Allocator, class T > using/*alloc-rebind*/= | (仅用于阐述*) | |
为 提供这些推导指引以允许从以下各项推导:
这些重载只有在 InputIt
满足 老式输入迭代器(LegacyInputIterator) ,Alloc
满足分配器(Allocator) ,并且 Comp
不满足分配器(Allocator) 时才会参与重载决议。
注意:库确定类型是否满足老式输入迭代器(LegacyInputIterator) 的程度是未指定的,但最低要求是整数类型不具备输入迭代器的条件。类似地,确定类型是否满足分配器(Allocator) 是未指定的,但最低要求是成员类型 Alloc::value_type
必须存在,且表达式 std::declval<Alloc&>().allocate(std::size_t{}) 在作为不求值操作数时必须为良构。
[编辑]示例
本节未完成 原因:暂无示例 |