xentara-utils v2.0.4
The Xentara Utility Library
|
Determines if a type is an integral type, but not a bool or a special character type. More...
#include <xentara/utils/tools/TypeTraits.hpp>
Related Symbols | |
(Note that these are not member symbols.) | |
template<typename Type > | |
constexpr bool | kIsIntegral |
Determines if a type is an integral type, but not a bool or a special character type. | |
template<typename Type > | |
constexpr bool | kIsIeeeFloatingPoint |
Determines if a type is an IEEE floating point. | |
Determines if a type is an integral type, but not a bool or a special character type.
This trait is equivalent to std::is_integral, except that its value is false for the types bool, char, char8_t, char16_t, and char32_t, wchar_t.
|
related |
Determines if a type is an IEEE floating point.
|
related |
Determines if a type is an integral type, but not a bool or a special character type.
This value is equivalent to std::is_integral_v, except that it is false for possibly CV-qualified bool, char, wchar_t, char8_t, char16_t, and char32_t.