std::flat_set
的推導指南
在標頭檔案 <flat_set> 中定義 |
||
template< class KeyContainer, class Compare = std::less<typename KeyContainer::value_type> > |
(1) | (C++23 起) |
template< class KeyContainer, class Allocator > flat_set( KeyContainer, Allocator ) |
(2) | (C++23 起) |
template< class KeyContainer, class Compare, class Allocator > flat_set( KeyContainer, Compare, Allocator ) |
(3) | (C++23 起) |
template< class KeyContainer, class Compare = std::less<typename KeyContainer::value_type> > |
(4) | (C++23 起) |
template< class KeyContainer, class Allocator > flat_set( std::sorted_unique_t, KeyContainer, Allocator ) |
(5) | (C++23 起) |
template< class KeyContainer, class Compare, class Allocator > flat_set( std::sorted_unique_t, KeyContainer, Compare, Allocator ) |
(6) | (C++23 起) |
template< class InputIter, class Compare = std::less</*iter-value-type*/<InputIter>> > |
(7) | (C++23 起) |
template< class InputIter, class Compare = std::less</*iter-value-type*/<InputIter>> > |
(8) | (C++23 起) |
template< ranges::input_range R, class Compare = std::less<ranges::range_value_t<R>>, |
(9) | (C++23 起) |
template< ranges::input_range R, class Allocator > flat_set( std::from_range_t, R&&, Allocator ) |
(10) | (C++23 起) |
template< class Key, class Compare = std::less<Key> > flat_set( std::initializer_list<Key>, Compare = Compare() ) |
(11) | (C++23 起) |
template< class Key, class Compare = std::less<Key> > flat_set( std::sorted_unique_t, |
(12) | (C++23 起) |
為 提供了這些推導指南,以允許從以下情況進行推導:
這些過載只有在 InputIt
滿足 LegacyInputIterator,Alloc
滿足 Allocator,並且 Comp
不滿足 Allocator 時才參與過載決議。
注意:庫確定型別不滿足 LegacyInputIterator 的程度未指定,但至少整數型別不符合輸入迭代器的條件。同樣,庫確定型別不滿足 Allocator 的程度也未指定,但至少成員型別 Alloc::value_type
必須存在,並且表示式 std::declval<Alloc&>().allocate(std::size_t{}) 在被視為未求值運算元時必須格式良好。
[編輯] 示例
本節不完整 原因:無示例 |