Searched defs:is_scalar (Results 1 – 3 of 3) sorted by relevance
35 is_scalar struct37 static bool const value=false;39 template <> struct is_scalar<char> { static bool const value=true; }; argument40 template <> struct is_scalar<signed char> { static bool const value=true; }; struct41 template <> struct is_scalar<unsigned char> { static bool const value=true; }; argument42 template <> struct is_scalar<signed short> { static bool const value=true; }; struct43 template <> struct is_scalar<unsigned short> { static bool const value=true; }; struct44 template <> struct is_scalar<signed int> { static bool const value=true; }; struct45 template <> struct is_scalar<unsigned int> { static bool const value=true; }; struct46 template <> struct is_scalar<signed long> { static bool const value=true; }; argument[all …]
21 struct is_scalar struct
489 struct is_scalar struct490 { static const bool value = is_integral<T>::value || is_floating_point<T>::value; };