Searched defs:is_integral_cv (Results 1 – 1 of 1) sorted by relevance
615 template<class T> struct is_integral_cv { static const bool value = false; }; argument616 template<> struct is_integral_cv< bool>{ static const bool value = true; }; struct617 template<> struct is_integral_cv< char>{ static const bool value = true; }; argument618 template<> struct is_integral_cv< unsigned char>{ static const bool value = true; }; argument619 template<> struct is_integral_cv< signed char>{ static const bool value = true; }; struct621 template<> struct is_integral_cv< char16_t>{ static const bool value = true; }; argument624 template<> struct is_integral_cv< char32_t>{ static const bool value = true; }; argument627 template<> struct is_integral_cv< wchar_t>{ static const bool value = true; }; struct629 template<> struct is_integral_cv< short>{ static const bool value = true; }; struct630 template<> struct is_integral_cv< unsigned short>{ static const bool value = true; }; struct[all …]