Searched defs:is_floating_point (Results 1 – 2 of 2) sorted by relevance
16 template <class T> struct is_floating_point : public false_type{}; struct17 template <class T> struct is_floating_point<const T> : public is_floating_point<T>{}; struct18 template <class T> struct is_floating_point<volatile const T> : public is_floating_point<T>{}; struct19 template <class T> struct is_floating_point<volatile T> : public is_floating_point<T>{}; struct20 template<> struct is_floating_point<float> : public true_type{}; struct21 template<> struct is_floating_point<double> : public true_type{}; struct22 template<> struct is_floating_point<long double> : public true_type{}; struct25 template<> struct is_floating_point<__float128> : public true_type{}; struct
433 struct is_floating_point struct