read_fonts::tables::cmap

Type Alias 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>

Source

pub fn format(&self) -> u16

Subtable format. Set to 14.

Source

pub fn length(&self) -> u32

Byte length of this subtable (including this header)

Source

pub fn num_var_selector_records(&self) -> u32

Number of variation Selector Records

Source

pub fn var_selector(&self) -> &'a [VariationSelector]

Array of VariationSelector records.

Source§

impl<'a> Cmap14<'a>

Source

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.

Source

pub fn iter(&self) -> Cmap14Iter<'a>

Returns an iterator over all (codepoint, selector, mapping variant) triples in the subtable.

Source

pub fn closure_glyphs( &self, unicodes: &IntSet<u32>, glyph_set: &mut IntSet<GlyphId>, )

Available on crate feature std only.

Trait Implementations§

Source§

impl<'a> FontRead<'a> for Cmap14<'a>

Source§

fn read(data: FontData<'a>) -> Result<Self, ReadError>

Read an instance of Self from the provided data, performing validation. Read more