Searched defs:hb_concat_iter_t (Results 1 – 1 of 1) sorted by relevance
583 struct hb_concat_iter_t : struct586 hb_concat_iter_t () {} in hb_concat_iter_t() function587 hb_concat_iter_t (A& a, B& b) : a (a), b (b) {} in hb_concat_iter_t() function588 hb_concat_iter_t (const A& a, const B& b) : a (a), b (b) {} in hb_concat_iter_t() argument591 typedef typename A::item_t __item_t__;592 static constexpr bool is_random_access_iterator =595 static constexpr bool is_sorted_iterator = false;597 __item_t__ __item__ () const in __item__()604 __item_t__ __item_at__ (unsigned i) const in __item_at__()612 bool __more__ () const { return bool (a) || bool (b); } in __more__()[all …]