Searched defs:get_unsigned (Results 1 – 3 of 3) sorted by relevance
14 template<class T> struct get_unsigned struct16 typedef T type;18 template<> struct get_unsigned<signed char> struct20 typedef unsigned char type;22 template<> struct get_unsigned<char> struct24 typedef unsigned char type;26 template<> struct get_unsigned<short> struct28 typedef unsigned short type;30 template<> struct get_unsigned<int> struct32 typedef unsigned int type;[all …]
175 template <typename T> struct get_unsigned struct177 typedef T result;180 template <> struct get_unsigned<char> struct182 typedef unsigned char result;185 template <> struct get_unsigned<signed char> struct187 typedef unsigned char result;190 template <> struct get_unsigned<short int> struct192 typedef unsigned short int result;195 template <> struct get_unsigned<int> struct197 typedef unsigned int result;[all …]
327 template<class ValType> void get_unsigned in get_unsigned() function in boost::math::nonfinite_num_get