deduction guides for std::flat_map
Defined in header <flat_map> | ||
template<class KeyContainer, class MappedContainer, class Compare =std::less<typename KeyContainer::value_type>> | (1) | (since C++23) |
template<class KeyContainer, class MappedContainer, class Allocator > flat_map( KeyContainer, MappedContainer, Allocator ) | (2) | (since C++23) |
template<class KeyContainer, class MappedContainer, class Compare, class Allocator > | (3) | (since C++23) |
template<class KeyContainer, class MappedContainer, class Compare =std::less<typename KeyContainer::value_type>> | (4) | (since C++23) |
template<class KeyContainer, class MappedContainer, class Allocator > flat_map(std::sorted_unique_t, KeyContainer, MappedContainer, | (5) | (since C++23) |
template<class KeyContainer, class MappedContainer, class Compare, class Allocator> | (6) | (since C++23) |
template<class InputIt, class Compare =std::less</*iter-key-t*/<InputIt>>> | (7) | (since C++23) |
template<class InputIt, class Compare =std::less</*iter-key-t*/<InputIt>>> | (8) | (since C++23) |
template<ranges::input_range R, class Compare =std::less</*range-key-t*/<R>>, | (9) | (since C++23) |
template<ranges::input_range R, class Allocator > flat_map(std::from_range_t, R&&, Allocator ) | (10) | (since C++23) |
template<class Key, class T, class Compare =std::less<Key>> flat_map(std::initializer_list<pair<Key, T>>, Compare = Compare()) | (11) | (since 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) | (since C++23) |
Exposition-only helper type aliases | ||
template<class InputIt > using/*iter-val-t*/= | (exposition only*) | |
template<class InputIt > using/*iter-key-t*/= | (exposition only*) | |
template<class InputIt > using/*iter-mapped-t*/= | (exposition only*) | |
template<class Allocator, class T > using/*alloc-rebind*/= | (exposition only*) | |
template<ranges::input_range Range > using/*range-key-t*/= | (exposition only*) | |
template<ranges::input_range Range > using/*range-mapped-t*/= | (exposition only*) | |
These deduction guides are provided for to allow deduction from:
These overloads participate in overload resolution only if InputIt
satisfies LegacyInputIterator, Alloc
satisfies Allocator, and Comp
does not satisfy Allocator.
Note: the extent to which the library determines that a type does not satisfy LegacyInputIterator 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 satisfy Allocator is unspecified, except that as a minimum the member type Alloc::value_type
must exist and the expression std::declval<Alloc&>().allocate(std::size_t{}) must be well-formed when treated as an unevaluated operand.
[edit]Example
This section is incomplete Reason: no example |