Класс is_fundamental
Проверяет, является ли тип типом void или арифметическим типом.
Синтаксис
template <class Ty>
struct is_fundamental;
Параметры
Ty
Запрашиваемый тип.
Замечания
Экземпляр предиката типа имеет значение true, если тип Ty является фундаментальным типом, то есть void
целочисленным типом, типом с плавающей запятой или cv-qualified
формой одного из них, в противном случае он содержит значение false.
Пример
// std__type_traits__is_fundamental.cpp
// compile with: /EHsc
#include <type_traits>
#include <iostream>
struct trivial
{
int val;
};
int main()
{
std::cout << "is_fundamental<trivial> == " << std::boolalpha
<< std::is_fundamental<trivial>::value << std::endl;
std::cout << "is_fundamental<int> == " << std::boolalpha
<< std::is_fundamental<int>::value << std::endl;
std::cout << "is_fundamental<const float> == " << std::boolalpha
<< std::is_fundamental<const float>::value << std::endl;
std::cout << "is_fundamental<void> == " << std::boolalpha
<< std::is_fundamental<void>::value << std::endl;
return (0);
}
is_fundamental<trivial> == false
is_fundamental<int> == true
is_fundamental<const float> == true
is_fundamental<void> == true
Требования
Заголовок:<type_traits>
Пространство имен: std