Home
last modified time | relevance | path

Searched defs:remove_all_extents (Results 1 – 5 of 5) sorted by relevance

/third_party/boost/boost/type_traits/
Dremove_all_extents.hpp18 template <class T> struct remove_all_extents{ typedef T type; }; argument
21 template <class T, std::size_t N> struct remove_all_extents<T[N]> : public remove_all_extents<T>{}; struct
22 template <class T, std::size_t N> struct remove_all_extents<T const[N]> : public remove_all_extents… struct
23 template <class T, std::size_t N> struct remove_all_extents<T volatile[N]> : public remove_all_exte… struct
24 template <class T, std::size_t N> struct remove_all_extents<T const volatile[N]> : public remove_al… struct
26 template <class T> struct remove_all_extents<T[]> : public remove_all_extents<T>{}; struct
27 template <class T> struct remove_all_extents<T const[]> : public remove_all_extents<T const>{}; struct
28 template <class T> struct remove_all_extents<T volatile[]> : public remove_all_extents<T volatile>{… struct
29 template <class T> struct remove_all_extents<T const volatile[]> : public remove_all_extents<T cons… struct
/third_party/boost/libs/align/test/
Dalignment_of_test.cpp31 struct remove_all_extents { struct
36 struct remove_all_extents<T[]> { argument
37 typedef typename remove_all_extents<T>::type type; argument
41 struct remove_all_extents<T[N]> { struct
42 typedef typename remove_all_extents<T>::type type; argument
/third_party/boost/libs/hana/include/boost/hana/
Dtraits.hpp163 constexpr auto remove_all_extents = metafunction<std::remove_all_extents>; variable
/third_party/boost/boost/hana/
Dtraits.hpp163 constexpr auto remove_all_extents = metafunction<std::remove_all_extents>; variable
/third_party/boost/boost/move/detail/
Dtype_traits.hpp474 struct remove_all_extents struct
475 { typedef T type;};
478 struct remove_all_extents<T[]> struct
479 { typedef typename remove_all_extents<T>::type type; };
482 struct remove_all_extents<T[N]> struct
483 { typedef typename remove_all_extents<T>::type type;};