std::uses_allocator<std::packaged_task>
From 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::uses_allocator の std::packaged_task に対する特殊化を提供します。
目次 |
std::integral_constant から継承
メンバ定数
| value [static] |
true (公開静的メンバ定数) |
メンバ関数
| operator bool |
オブジェクトを bool に変換し、value を返します。 (public member function) |
| operator() (C++14) |
value を返します。 (public member function) |
メンバ型
| 型 | 定義 |
value_type
|
bool |
type
|
std::integral_constant<bool, value> |
[編集] 関連項目
| (C++11) |
指定された型が uses-allocator 構築をサポートしているかどうかをチェックします (クラステンプレート) |