Home
last modified time | relevance | path

Searched defs:is_class (Results 1 – 7 of 7) sorted by relevance

/third_party/boost/boost/type_traits/
Dis_class.hpp105 template <class T> struct is_class : public integral_constant<bool, ::boost::detail::is_class_impl<… struct
107 template <class T> struct is_class<const T> : public is_class<T>{}; struct
108 template <class T> struct is_class<const volatile T> : public is_class<T>{}; struct
109 template <class T> struct is_class<volatile T> : public is_class<T>{}; struct
/third_party/boost/libs/hana/example/iterable/
Dsearchable.cpp21 constexpr auto is_class = hana::compose(hana::trait<std::is_class>, hana::typeid_); variable
/third_party/boost/libs/hana/example/
Dfind_if.cpp21 constexpr auto is_class = hana::compose(hana::trait<std::is_class>, hana::typeid_); variable
/third_party/boost/libs/type_traits/test/
Dudt_specialisations.cpp36 struct is_class<my_union> struct
/third_party/boost/boost/container/detail/
Dpair.hpp603 struct is_class< ::boost::container::dtl::pair<T1, T2> > struct
607 static const bool value = true;
611 struct is_class< std::pair<T1, T2> > struct
615 static const bool value = true;
/third_party/boost/libs/geometry/doc/src/docutils/tools/doxygen_xml2qbk/
Ddoxygen_elements.hpp161 bool is_class; // true if class, false if struct member
/third_party/boost/boost/move/detail/
Dtype_traits.hpp611 struct is_class struct
613 static const bool value = is_class_or_union<T>::value && ! is_union<T>::value;