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 InputIter, class Compare = std::less</*iter-value-type*/<InputIter>> > |
(7) | (自 C++23 起) |
template< class InputIter, class Compare = std::less</*iter-value-type*/<InputIter>> > |
(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 起) |
这些 推导指南 提供给 以允许从以下情况推导:
这些重载仅当InputIt
满足LegacyInputIterator,Alloc
满足Allocator,并且Comp
不满足Allocator时才参与重载解析。
注意:库确定类型是否不满足LegacyInputIterator的程度是未指定的,但至少整数类型不符合输入迭代器。同样,库确定类型是否不满足Allocator的程度也是未指定的,但至少成员类型Alloc::value_type
必须存在,并且表达式std::declval<Alloc&>().allocate(std::size_t{})在被视为未求值的运算数时必须是良构的。
[编辑] 示例
本节内容尚未完善 原因:没有示例 |