Searched defs:IsIntegralHelper (Results 1 – 1 of 1) sorted by relevance
848 struct IsIntegralHelper : FalseType {}; struct850 template<> struct IsIntegralHelper<char> : TrueType {}; struct851 template<> struct IsIntegralHelper<signed char> : TrueType {}; struct852 template<> struct IsIntegralHelper<unsigned char> : TrueType {}; struct853 template<> struct IsIntegralHelper<short> : TrueType {}; struct854 template<> struct IsIntegralHelper<unsigned short> : TrueType {}; struct855 template<> struct IsIntegralHelper<int> : TrueType {}; struct856 template<> struct IsIntegralHelper<unsigned int> : TrueType {}; struct857 template<> struct IsIntegralHelper<long> : TrueType {}; struct858 template<> struct IsIntegralHelper<unsigned long> : TrueType {}; struct[all …]