std::uses_allocator<std::function>
来自 cppreference.cn
定义于头文件 <functional> |
||
template< class R, class... ArgTypes, class Alloc > struct uses_allocator<std::function<R(ArgTypes...)>, Alloc> : std::true_type { }; |
(C++11 起) (C++17 前) |
|
此 std::uses_allocator 特化通知其他库组件,类型 std::function 的所有对象都支持*uses-allocator 构建*,尽管它们没有嵌套的 allocator_type
。
目录 |
[编辑] 注解
std::function
的分配器支持定义不佳且实现不一致。某些实现根本不支持 uses-allocator 构建,某些提供所需的构造函数重载但忽略提供的分配器参数,还有些提供重载并使用提供的分配器进行构建,但在 std::function
被重新赋值时却不使用。因此,分配器支持在 C++17 中被移除。
继承自 std::integral_constant
成员常量
值 [静态] |
true (public static 成员常量) |
成员函数
operator bool |
将对象转换为 bool,返回 value (公开成员函数) |
operator() (C++14) |
返回 value (公开成员函数) |
成员类型
类型 | 定义 |
value_type
|
bool |
类型
|
std::integral_constant<bool, value> |
[编辑] 参阅
(C++11) |
检查指定类型是否支持 uses-allocator 构造 (类模板) |