Lines Matching defs:IsIntegralHelper
848 struct IsIntegralHelper : FalseType {};
850 template<> struct IsIntegralHelper<char> : TrueType {};
851 template<> struct IsIntegralHelper<signed char> : TrueType {};
852 template<> struct IsIntegralHelper<unsigned char> : TrueType {};
853 template<> struct IsIntegralHelper<short> : TrueType {};
854 template<> struct IsIntegralHelper<unsigned short> : TrueType {};
855 template<> struct IsIntegralHelper<int> : TrueType {};
856 template<> struct IsIntegralHelper<unsigned int> : TrueType {};
857 template<> struct IsIntegralHelper<long> : TrueType {};
858 template<> struct IsIntegralHelper<unsigned long> : TrueType {};
859 template<> struct IsIntegralHelper<long long> : TrueType {};
860 template<> struct IsIntegralHelper<unsigned long long> : TrueType {};
861 template<> struct IsIntegralHelper<bool> : TrueType {};
862 template<> struct IsIntegralHelper<wchar_t> : TrueType {};
863 template<> struct IsIntegralHelper<char16_t> : TrueType {};
868 struct IsIntegral : detail::IsIntegralHelper<typename RemoveCV<T>::Type>