pub type U32Set<'a> = Set<'a, u32>;
Set over u32s, except u32::MAX.
u32
u32::MAX
Trying to insert u32::MAX will cause a panic. U32Set is commonly used to represent sets of glyph IDs.
U32Set
pub struct U32Set<'a>(/* private fields */);