Searched defs:hb_array_t (Results 1 – 1 of 1) sorted by relevance
48 struct hb_array_t : hb_iter_with_fallback_t<hb_array_t<Type>, Type&> struct55 hb_array_t () = default; argument61 constexpr hb_array_t (Type *array_, unsigned int length_) : arrayZ (array_), length (length_) {} in hb_array_t() function63 constexpr hb_array_t (Type (&array_)[length_]) : hb_array_t (array_, length_) {} in hb_array_t() argument67 constexpr hb_array_t (const hb_array_t<U> &o) : in hb_array_t() argument72 hb_array_t& operator = (const hb_array_t<U> &o) in operator =() argument78 typedef Type& __item_t__;79 static constexpr bool is_random_access_iterator = true;80 static constexpr bool has_fast_len = true;81 Type& __item__ () const in __item__()[all …]