std::is_error_condition_enum<std::errc>
From cppreference.com
| ヘッダー <system_error> で定義 |
||
| template<> struct is_error_condition_enum<std::errc> : std::true_type; |
(C++11以降) | |
std::errc がエラー条件 enum であることを指定します。これにより、std::error_condition への暗黙的な変換が可能になります。
目次 |
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) |
列挙を std::error_condition として識別する (クラステンプレート) |