Searched defs:is_integral_cv (Results 1 – 1 of 1) sorted by relevance
440 template<class T> struct is_integral_cv { static const bool value = false; }; struct441 template<> struct is_integral_cv< bool>{ static const bool value = true; }; argument442 template<> struct is_integral_cv< char>{ static const bool value = true; }; argument443 template<> struct is_integral_cv< unsigned char>{ static const bool value = true; }; argument444 template<> struct is_integral_cv< signed char>{ static const bool value = true; }; argument446 template<> struct is_integral_cv< char16_t>{ static const bool value = true; }; argument449 template<> struct is_integral_cv< char32_t>{ static const bool value = true; }; struct452 template<> struct is_integral_cv< wchar_t>{ static const bool value = true; }; argument454 template<> struct is_integral_cv< short>{ static const bool value = true; }; argument455 template<> struct is_integral_cv< unsigned short>{ static const bool value = true; }; argument[all …]