Type Alias read_fonts::tables::cmap::Cmap14
source · pub type Cmap14<'a> = TableRef<'a, Cmap14Marker>;
Expand description
cmap Format 14: Unicode Variation Sequences
Aliased Type§
struct Cmap14<'a> { /* private fields */ }
Implementations§
source§impl<'a> Cmap14<'a>
impl<'a> Cmap14<'a>
sourcepub fn num_var_selector_records(&self) -> u32
pub fn num_var_selector_records(&self) -> u32
Number of variation Selector Records
sourcepub fn var_selector(&self) -> &'a [VariationSelector]
pub fn var_selector(&self) -> &'a [VariationSelector]
Array of VariationSelector records.
source§impl<'a> Cmap14<'a>
impl<'a> Cmap14<'a>
sourcepub fn map_variant(
&self,
codepoint: impl Into<u32>,
selector: impl Into<u32>,
) -> Option<MapVariant>
pub fn map_variant( &self, codepoint: impl Into<u32>, selector: impl Into<u32>, ) -> Option<MapVariant>
Maps a codepoint and variation selector to a nominal glyph identifier.
sourcepub fn iter(&self) -> Cmap14Iter<'a> ⓘ
pub fn iter(&self) -> Cmap14Iter<'a> ⓘ
Returns an iterator over all (codepoint, selector, mapping variant) triples in the subtable.