Searched defs:hb_concat_iter_t (Results 1 – 1 of 1) sorted by relevance
600 struct hb_concat_iter_t : struct603 hb_concat_iter_t () {} in hb_concat_iter_t() argument604 hb_concat_iter_t (A& a, B& b) : a (a), b (b) {} in hb_concat_iter_t() argument605 hb_concat_iter_t (const A& a, const B& b) : a (a), b (b) {} in hb_concat_iter_t() argument608 typedef typename A::item_t __item_t__;609 static constexpr bool is_random_access_iterator =612 static constexpr bool is_sorted_iterator = false;614 __item_t__ __item__ () const in __item__()621 __item_t__ __item_at__ (unsigned i) const in __item_at__()629 bool __more__ () const { return bool (a) || bool (b); } in __more__()[all …]