std::uses_allocator<std::flat_multiset>
来自 cppreference.com
定义在头文件 <flat_set> 中 |
||
template< class Key, class Compare, class KeyContainer, class Allocator > struct uses_allocator<std::flat_multiset<Key, Compare, KeyContainer>, Allocator> |
(自 C++23 起) | |
为 std::flat_multiset 提供 std::uses_allocator 类型特征的透明特化:如果且仅如果底层容器使用分配器,则容器适配器使用分配器。
内容 |
继承自 std::integral_constant
成员常量
值 [静态] |
真 (公共静态成员常量) |
成员函数
运算符 bool |
将对象转换为 bool,返回 value (公共成员函数) |
运算符() (C++14) |
返回 value (公共成员函数) |
成员类型
类型 | 定义 |
值类型
|
布尔值 |
类型
|
std::integral_constant<bool, value> |
[编辑] 示例
运行此代码
#include <memory> #include <flat_set> static_assert( std::uses_allocator<std::flat_multiset<int>, void>::value == false && std::uses_allocator<std::flat_multiset<int>, std::allocator<int>>::value == true ); int main() {}
[编辑] 另请参见
(C++11) |
检查指定类型是否支持使用分配器构造 (类模板) |