std::uses_allocator<std::packaged_task>
来自 cppreference.com
< cpp | thread | packaged task
template< class R, class Alloc > struct uses_allocator<std::packaged_task<R>, Alloc> : true_type {}; |
(自 C++11 起) (在 C++17 中删除) |
|
为 std::packaged_task 提供 std::uses_allocator 类型特性的特化。
内容 |
从 std::integral_constant 继承
成员常量
value [静态] |
true (公共静态成员常量) |
成员函数
operator bool |
将对象转换为 bool,返回 value (公共成员函数) |
operator() (C++14) |
返回 value (公共成员函数) |
成员类型
类型 | 定义 |
value_type
|
bool |
type
|
std::integral_constant<bool, value> |
[编辑] 另请参阅
(C++11) |
检查指定类型是否支持使用分配器构造 (类模板) |