[set] Add page_t::set()

pull/3154/head
Behdad Esfahbod 4 years ago
parent 32bbf53d9c
commit cb273fd17c
  1. 1
      src/hb-set.hh

@ -75,6 +75,7 @@ struct hb_set_t
void add (hb_codepoint_t g) { elt (g) |= mask (g); }
void del (hb_codepoint_t g) { elt (g) &= ~mask (g); }
void set (hb_codepoint_t g, bool v) { if (v) add (g); else del (g); }
bool get (hb_codepoint_t g) const { return elt (g) & mask (g); }
void add_range (hb_codepoint_t a, hb_codepoint_t b)

Loading…
Cancel
Save