std::is_fundamental (3) - Linux Manuals
std::is_fundamental: std::is_fundamental
NAME
std::is_fundamental - std::is_fundamental
Synopsis
Defined in header <type_traits>
template< class T > (since C++11)
struct is_fundamental;
If T is a fundamental type (that is, arithmetic type, void, or nullptr_t), provides the member constant value equal true. For any other type, value is false.
Template parameters
T - a type to check
Helper variable template
template< class T > (since C++17)
inline constexpr bool is_fundamental_v = is_fundamental<T>::value;
Inherited from std::integral_constant
Member constants
value true if T is a fundamental type , false otherwise
[static]
Member functions
operator bool (public member function)
operator() returns value
(C++14)
Member types
Type Definition
value_type bool
type std::integral_constant<bool, value>
Possible implementation
Example
// Run this code
Output:
See also
is_compound checks if a type is a compound type
(C++11)
is_arithmetic checks if a type is an arithmetic type
(C++11)
is_void checks if a type is void
(C++11)
is_null_pointer checks if a type is std::nullptr_t
(C++14)