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 > ,

/*alloc-rebind*/ < 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) The std::sorted_equivalent_t タグ、コンテナ、およびアロケータ。
6) std::sorted_equivalent_t タグ、コンテナ、コンパレータ、およびアロケータ。
7) イテレータ範囲とコンパレータ。
8) std::sorted_equivalent_t タグ、イテレータ範囲、および比較関数。
9) std:: from_range_t タグ、1つの input_range 範囲、比較子、およびアロケータ。
10) The std:: from_range_t タグ、1つの input_range 範囲、および1つのアロケータ。
11) std::initializer_list とコンパレータ。
12) The std::sorted_equivalent_t tag, the std::initializer_list and a comparator.

これらのオーバーロードは、以下の条件が満たされる場合にのみオーバーロード解決に参加します: InputIt LegacyInputIterator を満たし、 Alloc Allocator を満たし、かつ Comp Allocator を満たさない場合です。

注意: ライブラリが型が LegacyInputIterator を満たさないと判断する程度は未規定であるが、少なくとも整数型は入力イテレータとして適格ではない。同様に、型が Allocator を満たさないと判断する程度は未規定であるが、少なくともメンバ型 Alloc::value_type が存在しなければならず、式 std:: declval < Alloc & > ( ) . allocate ( std:: size_t { } ) が未評価オペランドとして扱われる場合に well-formed でなければならない。