Searched defs:is_class (Results 1 – 8 of 8) sorted by relevance
/third_party/boost/boost/type_traits/ |
D | is_class.hpp | 105 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/ |
D | searchable.cpp | 21 constexpr auto is_class = hana::compose(hana::trait<std::is_class>, hana::typeid_); variable
|
/third_party/boost/libs/hana/example/ |
D | find_if.cpp | 21 constexpr auto is_class = hana::compose(hana::trait<std::is_class>, hana::typeid_); variable
|
/third_party/boost/libs/type_traits/test/ |
D | udt_specialisations.cpp | 36 struct is_class<my_union> struct
|
/third_party/boost/boost/container/detail/ |
D | pair.hpp | 603 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/ |
D | doxygen_elements.hpp | 161 bool is_class; // true if class, false if struct member
|
/third_party/boost/boost/move/detail/ |
D | type_traits.hpp | 611 struct is_class struct 613 static const bool value = is_class_or_union<T>::value && ! is_union<T>::value;
|
/third_party/python/Lib/ |
D | typing.py | 146 def _type_check(arg, msg, is_argument=True, module=None, *, is_class=False): argument 661 def __init__(self, arg, is_argument=True, module=None, *, is_class=False): argument
|