std::flat_multimap
的推导指南
在头文件 <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_multimap( 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_multimap( std::sorted_equivalent_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_multimap( std::from_range_t, R&&, Allocator ) |
(10) | (C++23 起) |
template< class Key, class T, class Compare = std::less<Key> > flat_multimap( std::initializer_list<pair<Key, T>>, Compare = Compare() ) |
(11) | (C++23 起) |
template< class Key, class T, class Compare = std::less<Key> > flat_multimap( std::sorted_equivalent_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{}) 在作为未求值操作数时必须格式良好。
[编辑] 示例
本节不完整 原因:无示例 |