template< class KeyContainer, class MappedContainer,
class Compare = std::less<typename KeyContainer::value_type> >
flat_multimap( KeyContainer, MappedContainer, Compare = Compare() )
-> flat_multimap<typename KeyContainer::value_type,
typename MappedContainer::value_type,
Compare, KeyContainer, MappedContainer>;
|
(1) |
(C++23 起) |
template< class KeyContainer, class MappedContainer, class Allocator >
flat_multimap( KeyContainer, MappedContainer, Allocator )
-> flat_multimap<typename KeyContainer::value_type,
typename MappedContainer::value_type,
std::less<typename KeyContainer::value_type>,
KeyContainer, MappedContainer>;
|
(2) |
(C++23 起) |
template< class KeyContainer, class MappedContainer,
class Compare, class Allocator >
flat_multimap( KeyContainer, MappedContainer, Compare, Allocator )
-> flat_multimap<typename KeyContainer::value_type,
typename MappedContainer::value_type,
Compare, KeyContainer, MappedContainer>;
|
(3) |
(C++23 起) |
template< class KeyContainer, class MappedContainer,
class Compare = std::less<typename KeyContainer::value_type> >
flat_multimap( std::sorted_equivalent_t, KeyContainer, MappedContainer,
Compare = Compare() )
-> flat_multimap<typename KeyContainer::value_type,
typename MappedContainer::value_type,
Compare, KeyContainer, MappedContainer>;
|
(4) |
(C++23 起) |
template< class KeyContainer, class MappedContainer, class Allocator >
flat_multimap( std::sorted_equivalent_t, KeyContainer, MappedContainer,
Allocator )
-> flat_multimap<typename KeyContainer::value_type,
typename MappedContainer::value_type,
std::less<typename KeyContainer::value_type>,
KeyContainer, MappedContainer>;
|
(5) |
(C++23 起) |
template< class KeyContainer, class MappedContainer,
class Compare, class Allocator>
flat_multimap( std::sorted_equivalent_t, KeyContainer, MappedContainer,
Compare, Allocator )
-> flat_multimap<typename KeyContainer::value_type,
typename MappedContainer::value_type,
Compare, KeyContainer, MappedContainer>;
|
(6) |
(C++23 起) |
template< class InputIt,
class Compare = std::less</*iter-key-t*/<InputIt>> >
flat_multimap( InputIt, InputIt, Compare = Compare() )
-> flat_multimap</*iter-key-t*/<InputIt>,
/*iter-mapped-t*/<InputIt>, Compare>;
|
(7) |
(C++23 起) |
template< class InputIt,
class Compare = std::less</*iter-key-t*/<InputIt>> >
flat_multimap( std::sorted_equivalent_t, InputIt, InputIt,
Compare = Compare() )
-> flat_multimap</*iter-key-t*/<InputIt>,
/*iter-mapped-t*/<InputIt>, Compare>;
|
(8) |
(C++23 起) |
template< ranges::input_range R,
class Compare = std::less</*range-key-t*/<R>>,
class Allocator = allocator<byte> >
flat_multimap( std::from_range_t, R&&, Compare = Compare(),
Allocator = Allocator() )
-> flat_multimap</*range-key-t*/<R>, /*range-mapped-t*/<R>, Compare,
std::vector</*range-key-t*/<R>,
/*alloc-rebind*/<Allocator,
/*range-key-t*/<R>>>,
std::vector</*range-mapped-t*/<R>,
/*alloc-rebind*/<Allocator,
/*range-mapped-t*/<R>>>>;
|
(9) |
(C++23 起) |
template< ranges::input_range R, class Allocator >
flat_multimap( std::from_range_t, R&&, Allocator )
-> flat_multimap</*range-key-t*/<R>, /*range-mapped-t*/<R>,
std::less</*range-key-t*/<R>>,
std::vector</*range-key-t*/<R>,
/*alloc-rebind*/<Allocator,
/*range-key-t*/<R>>>,
std::vector</*range-mapped-t*/<R>,
/*alloc-rebind*/<Allocator,
/*range-mapped-t*/<R>>>>;
|
(10) |
(C++23 起) |
template< class Key, class T, class Compare = std::less<Key> >
flat_multimap( std::initializer_list<pair<Key, T>>, Compare = Compare() )
-> flat_multimap<Key, T, 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>>,
Compare = Compare() )
-> flat_multimap<Key, T, Compare>;
|
(12) |
(C++23 起) |
| 仅用于阐释的辅助类型别名 |
|
|
template< class InputIt >
using /*iter-val-t*/ =
typename std::iterator_traits<InputIt>::value_type;
|
|
(仅用于阐述*) |
template< class InputIt >
using /*iter-key-t*/ =
std::remove_const_t< std::tuple_element_t<0, /*iter-val-t*/<InputIt>>>;
|
|
(仅用于阐述*) |
template< class InputIt >
using /*iter-mapped-t*/ =
std::tuple_element_t<1, /*iter-val-t*/<InputIt>>;
|
|
(仅用于阐述*) |
template< class Allocator, class T >
using /*alloc-rebind*/ =
typename std::allocator_traits<Allocator>::template rebind_alloc<T>;
|
|
(仅用于阐述*) |
template< ranges::input_range Range >
using /*range-key-t*/ =
std::remove_const_t<typename ranges::range_value_t<Range>::first_type>;
|
|
(仅用于阐述*) |
template< ranges::input_range Range >
using /*range-mapped-t*/ =
typename ranges::range_value_t<Range>::second_type;
|
|
(仅用于阐述*) |
| | |