Namespaces
Variants

deduction guides for std::flat_multiset

From cppreference.net

定义于头文件 <flat_set>
template < class KeyContainer,

class Compare = std:: less < typename KeyContainer :: value_type > >
flat_multiset ( KeyContainer, Compare = Compare ( ) )

- > flat_multiset < typename KeyContainer :: value_type , Compare, KeyContainer > ;
(1) (自 C++23 起)
template < class KeyContainer, class Allocator >

flat_multiset ( KeyContainer, Allocator )
- > flat_multiset < typename KeyContainer :: value_type ,

std:: less < typename KeyContainer :: value_type > , KeyContainer > ;
(2) (自 C++23 起)
template < class KeyContainer, class Compare, class Allocator >

flat_multiset ( KeyContainer, Compare, Allocator )

- > flat_multiset < typename KeyContainer :: value_type , Compare, KeyContainer > ;
(3) (自 C++23 起)
template < class KeyContainer,

class Compare = std:: less < typename KeyContainer :: value_type > >
flat_multiset ( std:: sorted_equivalent_t , KeyContainer, Compare = Compare ( ) )

- > flat_multiset < typename KeyContainer :: value_type , Compare, KeyContainer > ;
(4) (自 C++23 起)
template < class KeyContainer, class Allocator >

flat_multiset ( std:: sorted_equivalent_t , KeyContainer, Allocator )
- > flat_multiset < typename KeyContainer :: value_type ,

std:: less < typename KeyContainer :: value_type > , KeyContainer > ;
(5) (自 C++23 起)
template < class KeyContainer, class Compare, class Allocator >

flat_multiset ( std:: sorted_equivalent_t , KeyContainer, Compare, Allocator )

- > flat_multiset < typename KeyContainer :: value_type , Compare, KeyContainer > ;
(6) (自 C++23 起)
template < class InputIt,

class Compare = std:: less < /*iter-val-t*/ < InputIt >> >
flat_multiset ( InputIt, InputIt, Compare = Compare ( ) )

- > flat_multiset < /*iter-val-t*/ < InputIt > , Compare > ;
(7) (自 C++23 起)
template < class InputIt,

class Compare = std:: less < /*iter-val-t*/ < InputIt >> >
flat_multiset ( std:: sorted_equivalent_t , InputIt, InputIt, Compare = Compare ( ) )

- > flat_multiset < /*iter-val-t*/ < InputIt > , Compare > ;
(8) (自 C++23 起)
template < ranges:: input_range R,

class Compare = std:: less < ranges:: range_value_t < R >> ,
class Allocator = std:: allocator < ranges:: range_value_t < R >> >
flat_multiset ( std:: from_range_t , R && , Compare = Compare ( ) , Allocator = Allocator ( ) )
- > flat_multiset < ranges:: range_value_t < R > , Compare,
std:: vector < ranges:: range_value_t < R > ,

/*分配器重绑定*/ < Allocator, ranges:: range_value_t < R >>>> ;
(9) (自 C++23 起)
template < ranges:: input_range R, class Allocator >

flat_multiset ( std:: from_range_t , R && , Allocator )
- > flat_multiset < ranges:: range_value_t < R > , std:: less < ranges:: range_value_t < R >> ,
std:: vector < ranges:: range_value_t < R > ,

/*分配器重绑定*/ < Allocator, ranges:: range_value_t < R >>>> ;
(10) (C++23 起)
template < class Key, class Compare = std:: less < Key > >

flat_multiset ( std:: initializer_list < Key > , Compare = Compare ( ) )

- > flat_multiset < Key, Compare > ;
(11) (自 C++23 起)
template < class Key, class Compare = std:: less < Key > >

flat_multiset ( std:: sorted_equivalent_t ,
std:: initializer_list < Key > , Compare = Compare ( ) )

- > flat_multiset < Key, Compare > ;
(12) (自 C++23 起)
仅用于说明的辅助类型别名
template < class InputIt >

using /*iter-val-t*/ =

typename std:: iterator_traits < InputIt > :: value_type ;
( 仅用于说明* )
template < class Allocator, class T >

using /*alloc-rebind*/ =

typename std:: allocator_traits < Allocator > :: template rebind_alloc < T > ;
( 仅用于说明* )

这些 推导指引 提供,以允许从以下内容进行推导:

1) 一个容器和一个比较器。
2) 容器与分配器。
3) 一个容器、一个比较器和一个分配器。
4) std::sorted_equivalent_t 标签、一个容器和一个比较器。
5) std::sorted_equivalent_t 标签、容器与分配器。
6) std::sorted_equivalent_t 标签、一个容器、一个比较器和一个分配器。
7) 一个迭代器范围和一个比较器。
8) std::sorted_equivalent_t 标签、迭代器范围及比较器。
9) std:: from_range_t 标签、一个 input_range 范围、一个比较器和一个分配器。
10) std:: from_range_t 标签、一个 input_range 范围和一个分配器。
11) The std::initializer_list 与比较器。
12) std::sorted_equivalent_t 标签、 std::initializer_list 以及比较器。

这些重载仅在满足以下条件时参与重载决议: InputIt 满足 LegacyInputIterator Alloc 满足 Allocator 、且 Comp 不满足 Allocator 要求时。

注意:库判定某个类型不满足 LegacyInputIterator 要求的程度是未指定的,但至少整型类型不符合输入迭代器的要求。同样地,库判定某个类型不满足 Allocator 要求的程度也是未指定的,但至少成员类型 Alloc::value_type 必须存在,且表达式 std:: declval < Alloc & > ( ) . allocate ( std:: size_t { } ) 在被视为未求值操作数时必须保持良构。

示例