Checks if a type is an integral type. More...
Inherits is_integral< T >.
A Unary concept to check if a type is an integral type.
This concept delegates the work to std::is_integral<T>
. An integral type is one of the following:
bool
, char
, wchar_t
, char16_t
, char32_t
, long
, long long
, short
, and int
.
Their const
, volatile
, signed
, and unsigned
variations are valid as well.
T | Type to check. |