[iter] Accept iterator, not iterable, in hb_map()()

This commit is contained in:
Behdad Esfahbod 2019-02-14 10:48:20 -08:00
parent 16cc313dcd
commit 345bfbb207
1 changed files with 5 additions and 5 deletions

View File

@ -272,11 +272,11 @@ struct hb_map_iter_factory_t
{
hb_map_iter_factory_t (Proj&& f) : f (f) {}
template <typename Iterable,
hb_enable_if (hb_is_iterable (Iterable))>
hb_map_iter_t<hb_iter_t (Iterable), Proj>
operator () (const Iterable &c) const
{ return hb_map_iter_t<hb_iter_t (Iterable), Proj> (c.iter (), f); }
template <typename Iter,
hb_enable_if (hb_is_iterator (Iter))>
hb_map_iter_t<Iter, Proj>
operator () (Iter it) const
{ return hb_map_iter_t<Iter, Proj> (it, f); }
private:
Proj f;