Searched defs:hb_sorted_vector_t (Results 1 – 1 of 1) sorted by relevance
312 struct hb_sorted_vector_t : hb_vector_t<Type> struct318 hb_sorted_vector_t (std::initializer_list<Type> lst) : hb_vector_t<Type> (lst) {} in hb_sorted_vector_t() argument321 hb_sorted_vector_t (const Iterable &o) : hb_vector_t<Type> (o) {} in hb_sorted_vector_t() argument327 …rted_array_t< Type> as_array () { return hb_sorted_array (this->arrayZ, this->length); } in as_array()328 …rted_array_t<const Type> as_array () const { return hb_sorted_array (this->arrayZ, this->length); } in as_array()331 typedef hb_sorted_array_t<const Type> const_iter_t;332 typedef hb_sorted_array_t< Type> iter_t;333 const_iter_t iter () const { return as_array (); } in iter()334 const_iter_t citer () const { return as_array (); } in citer()335 iter_t iter () { return as_array (); } in iter()[all …]