std::flat_map
的推导指南
定义在头文件 <flat_map> 中 |
||
template< class KeyContainer, class MappedContainer, class Compare = std::less<typename KeyContainer::value_type> > |
(1) | (自 C++23 起) |
template< class KeyContainer, class MappedContainer, class Allocator > flat_map( KeyContainer, MappedContainer, Allocator ) |
(2) | (自 C++23 起) |
template< class KeyContainer, class MappedContainer, class Compare, class Allocator > |
(3) | (自 C++23 起) |
template< class KeyContainer, class MappedContainer, class Compare = std::less<typename KeyContainer::value_type> > |
(4) | (自 C++23 起) |
template< class KeyContainer, class MappedContainer, class Allocator > flat_map( std::sorted_unique_t, KeyContainer, MappedContainer, |
(5) | (自 C++23 起) |
template< class KeyContainer, class MappedContainer, class Compare, class Allocator> |
(6) | (自 C++23 起) |
template< class InputIter, class Compare = std::less</*iter-key-type*/<InputIter>> > |
(7) | (自 C++23 起) |
template< class InputIter, class Compare = std::less</*iter-key-type*/<InputIter>> > |
(8) | (自 C++23 起) |
template< ranges::input_range R, class Compare = std::less</*range-key-type*/<R>>, |
(9) | (自 C++23 起) |
template< ranges::input_range R, class Allocator > flat_map( std::from_range_t, R&&, Allocator ) |
(10) | (自 C++23 起) |
template< class Key, class T, class Compare = std::less<Key> > flat_map( std::initializer_list<pair<Key, T>>, Compare = Compare() ) |
(11) | (自 C++23 起) |
template< class Key, class T, class Compare = std::less<Key> > flat_map( std::sorted_unique_t, std::initializer_list<pair<Key, T>>, |
(12) | (自 C++23 起) |
这些 推导指南 用于 ,允许从以下内容推导:
只有当 InputIt
满足 LegacyInputIterator、Alloc
满足 Allocator 且 Comp
不满足 Allocator 时,这些重载才会参与重载解析。
注意:库确定某个类型是否不满足 LegacyInputIterator 的程度是不确定的,除了至少整数类型不符合输入迭代器。同样,库确定某个类型是否不满足 Allocator 的程度是不确定的,除了至少成员类型 Alloc::value_type
必须存在,并且表达式 std::declval<Alloc&>().allocate(std::size_t{}) 在被视为未求值的运算对象时必须是格式良好的。
[编辑] 示例
本节内容不完整 原因:没有示例 |