Searched defs:hb_sorted_vector_t (Results 1 – 1 of 1) sorted by relevance
283 struct hb_sorted_vector_t : hb_vector_t<Type> struct285 …rted_array_t< Type> as_array () { return hb_sorted_array (this->arrayZ, this->length); } in as_array()286 …rted_array_t<const Type> as_array () const { return hb_sorted_array (this->arrayZ, this->length); } in as_array()289 typedef hb_sorted_array_t<const Type> const_iter_t;290 typedef hb_sorted_array_t< Type> iter_t;291 const_iter_t iter () const { return as_array (); } in iter()292 const_iter_t citer () const { return as_array (); } in citer()293 iter_t iter () { return as_array (); } in iter()294 operator iter_t () { return iter (); } in operator iter_t()295 operator const_iter_t () const { return iter (); } in operator const_iter_t()[all …]