description | title | ms.date | f1_keywords | helpviewer_keywords | ms.assetid | |||
---|---|---|---|---|---|---|---|---|
Learn more about: is_fundamental Class |
is_fundamental Class |
11/04/2016 |
|
|
b84eee84-2fb2-4611-beaf-b384074d8b6a |
Tests if type is void or arithmetic.
template <class Ty>
struct is_fundamental;
Ty
The type to query.
An instance of the type predicate holds true if the type Ty is a fundamental type, that is, void
, an integral type, an floating point type, or a cv-qualified
form of one of them, otherwise it holds 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
Header: <type_traits>
Namespace: std