Home | History | Annotate | Download | only in stubs

Lines Matching defs:is_floating_point

39 //   is_floating_point
70 template <class T> struct is_floating_point;
123 // is_floating_point is false except for the built-in floating-point types.
125 template <class T> struct is_floating_point : false_type { };
126 template<> struct is_floating_point<float> : true_type { };
127 template<> struct is_floating_point<double> : true_type { };
128 template<> struct is_floating_point<long double> : true_type { };
129 template <class T> struct is_floating_point<const T>
130 : is_floating_point<T> { };
131 template <class T> struct is_floating_point<volatile T>
132 : is_floating_point<T> { };
133 template <class T> struct is_floating_point<const volatile T>
134 : is_floating_point<T> { };
183 is_floating_point<T>::value ||
205 is_floating_point<T>::value ||