is_union Class
Testy, jeśli typem jest Unii.
template<class Ty>
struct is_union;
Parametry
- Ty
Typ kwerendy.
Uwagi
Wystąpienie predykat typu posiada true, jeśli typ Ty jest typem Unii lub cv-qualified formularza Unii typu, inaczej przechowuje wartość false.
Przykład
// std_tr1__type_traits__is_union.cpp
// compile with: /EHsc
#include <type_traits>
#include <iostream>
struct trivial
{
int val;
};
union ints
{
int in;
long lo;
};
int main()
{
std::cout << "is_union<trivial> == " << std::boolalpha
<< std::is_union<trivial>::value << std::endl;
std::cout << "is_union<int> == " << std::boolalpha
<< std::is_union<int>::value << std::endl;
std::cout << "is_union<ints> == " << std::boolalpha
<< std::is_union<ints>::value << std::endl;
return (0);
}
Wymagania
Nagłówek: <type_traits>
Obszar nazw: std
Zobacz też
Informacje
Inne zasoby
<type_traits> Członkowie