std::set
的推导指南
定义在头文件 <set> 中 |
||
template< class InputIt, |
(1) | (自 C++17 起) |
template< class Key, class Comp = std::less<Key>, |
(2) | (自 C++17 起) |
template< class InputIt, class Alloc > set( InputIt, InputIt, Alloc ) |
(3) | (自 C++17 起) |
template< class Key, class Alloc > set( std::initializer_list<Key>, Alloc ) |
(4) | (自 C++17 起) |
template< ranges::input_range R, class Compare = less<ranges::range_value_t<R>>, class Alloc = std::allocator<ranges::range_value_t<R>> > |
(5) | (自 C++23 起) |
template< ranges::input_range R, class Alloc > set( std::from_range_t, R&&, Alloc ) |
(6) | (自 C++23 起) |
只有当 InputIt
满足 LegacyInputIterator、Alloc
满足 Allocator 且 Comp
不满足 Allocator 时,这些重载才参与重载解析。
注意:库确定类型不满足 LegacyInputIterator 的程度未指定,但至少整数类型不符合输入迭代器的要求。同样地,库确定类型不满足 Allocator 的程度未指定,但至少成员类型 Alloc::value_type
必须存在,并且表达式 std::declval<Alloc&>().allocate(std::size_t{}) 在被视为未评估的操作数时必须是格式良好的。
[编辑] 注释
特性测试 宏 | 值 | 标准 | 特性 |
---|---|---|---|
__cpp_lib_containers_ranges |
202202L | (C++23) | 支持范围的 构造和插入;重载 (5,6) |