std:: is_error_condition_enum <std::errc>
From cppreference.net
C++
Utilities library
|
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Diagnostics library
|
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
std::errc
| Non-member functions | ||||
| Helper classes | ||||
|
is_error_condition_enum
|
|
Défini dans l'en-tête
<system_error>
|
||
|
template
<>
struct is_error_condition_enum < std:: errc > : std:: true_type ; |
(depuis C++11) | |
Spécifie que std::errc est une énumération de condition d'erreur. Cela permet la conversion implicite vers std::error_condition .
Table des matières |
Hérité de std:: integral_constant
Constantes membres
|
value
[static]
|
true
(constante membre publique statique) |
Fonctions membres
|
operator bool
|
convertit l'objet en
bool
, retourne
value
(fonction membre publique) |
|
operator()
(C++14)
|
retourne
value
(fonction membre publique) |
Types membres
| Type | Définition |
value_type
|
bool |
type
|
std:: integral_constant < bool , value > |
Voir aussi
|
(C++11)
|
identifie une énumération comme étant un
std::error_condition
(modèle de classe) |