Home
last modified time | relevance | path

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

/aosp_15_r20/external/sdv/vsomeip/third_party/boost/numeric/ublas/include/boost/numeric/ublas/tensor/
Dmulti_index_utility.hpp30 struct has_index_impl<itype_left, itype_right> struct
32 static constexpr bool value = itype_left::value == itype_right::value;
42 struct has_index_impl <itype_left, std::tuple<itype_right> > struct
44 static constexpr bool value = has_index_impl<itype_left,itype_right>::value;
48 struct has_index_impl <itype_left, std::tuple<itype_right, index_types...> > struct
50 using next_type = has_index_impl<itype_left, std::tuple<index_types...>>;
51 static constexpr bool value = has_index_impl<itype_left,itype_right>::value || next_type::value;