mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-05 13:35:06 +00:00
[set-digest] Add operator []. Also auto-initialize
This commit is contained in:
parent
3d75d445e4
commit
5158255807
1 changed files with 7 additions and 1 deletions
|
@ -129,11 +129,14 @@ struct hb_set_digest_bits_pattern_t
|
|||
bool may_have (hb_codepoint_t g) const
|
||||
{ return mask & mask_for (g); }
|
||||
|
||||
bool operator [] (hb_codepoint_t g) const
|
||||
{ return may_have (g); }
|
||||
|
||||
private:
|
||||
|
||||
static mask_t mask_for (hb_codepoint_t g)
|
||||
{ return ((mask_t) 1) << ((g >> shift) & (mask_bits - 1)); }
|
||||
mask_t mask;
|
||||
mask_t mask = 0;
|
||||
};
|
||||
|
||||
template <typename head_t, typename tail_t>
|
||||
|
@ -188,6 +191,9 @@ struct hb_set_digest_combiner_t
|
|||
return head.may_have (g) && tail.may_have (g);
|
||||
}
|
||||
|
||||
bool operator [] (hb_codepoint_t g) const
|
||||
{ return may_have (g); }
|
||||
|
||||
private:
|
||||
head_t head;
|
||||
tail_t tail;
|
||||
|
|
Loading…
Add table
Reference in a new issue