std::is_member_pointer
Da cppreference.com.
![]() |
Questa pagina è stata tradotta in modo automatico dalla versione in ineglese della wiki usando Google Translate.
La traduzione potrebbe contenere errori e termini strani. Muovi il puntatore sopra al testo per vedere la versione originale. Puoi aiutarci a correggere gli gli errori. Per ulteriori istruzioni clicca qui. |
Elemento definito nell'header <type_traits>
|
||
template< class T > struct is_member_pointer; |
(dal C++11) | |
Se
T
è puntatore a non statico oggetto membro o un puntatore a funzione non statica membro, fornisce l'elemento costante value
true uguali. Per qualsiasi altro tipo, è value
false.Original:
If
T
is pointer to non-static member object or a pointer to non-static member function, provides the member constant value
equal true. For any other type, value
is false.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
Indice |
Inherited from std::integral_constant
Member constants
value [statico] |
true se T is a member pointer type , false altrimenti Original: true if T is a member pointer type , false otherwise The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click |