[iter] Use hb_apply() with lambda functions in a few places

This commit is contained in:
Behdad Esfahbod 2019-02-14 13:16:33 -08:00
parent 0670e1a6f5
commit 7514a49f21
1 changed files with 17 additions and 13 deletions

View File

@ -345,18 +345,20 @@ struct MultipleSubstFormat1
void closure (hb_closure_context_t *c) const
{
for (auto it = hb_zip (this+coverage, sequence)
| hb_filter (*c->glyphs, hb_first)
| hb_map (hb_second); it; ++it)
(this+*it).closure (c);
+ hb_zip (this+coverage, sequence)
| hb_filter (*c->glyphs, hb_first)
| hb_map (hb_second)
| hb_apply ([&](const OffsetTo<Sequence> &_) { (this+_).closure (c); })
;
}
void collect_glyphs (hb_collect_glyphs_context_t *c) const
{
if (unlikely (!(this+coverage).add_coverage (c->input))) return;
for (auto it = hb_zip (this+coverage, sequence)
| hb_map (hb_second); it; ++it)
(this+*it).collect_glyphs (c);
+ hb_zip (this+coverage, sequence)
| hb_map (hb_second)
| hb_apply ([&](const OffsetTo<Sequence> &_) { (this+_).collect_glyphs (c); })
;
}
const Coverage &get_coverage () const { return this+coverage; }
@ -521,17 +523,19 @@ struct AlternateSubstFormat1
void closure (hb_closure_context_t *c) const
{
for (auto it = hb_zip (this+coverage, alternateSet)
| hb_map (hb_second); it; ++it)
(this+*it).closure (c);
+ hb_zip (this+coverage, alternateSet)
| hb_map (hb_second)
| hb_apply ([&](const OffsetTo<AlternateSet> &_) { (this+_).closure (c); })
;
}
void collect_glyphs (hb_collect_glyphs_context_t *c) const
{
if (unlikely (!(this+coverage).add_coverage (c->input))) return;
for (auto it = hb_zip (this+coverage, alternateSet)
| hb_map (hb_second); it; ++it)
(this+*it).collect_glyphs (c);
+ hb_zip (this+coverage, alternateSet)
| hb_map (hb_second)
| hb_apply ([&](const OffsetTo<AlternateSet> &_) { (this+_).collect_glyphs (c); })
;
}
const Coverage &get_coverage () const { return this+coverage; }