U32Set

Type Alias U32Set 

Source
pub type U32Set<'a> = Set<'a, u32>;
Expand description

Set over u32s, except u32::MAX.

Trying to insert u32::MAX will cause a panic. U32Set is commonly used to represent sets of glyph IDs.

Aliased Typeยง

pub struct U32Set<'a>(/* private fields */);