Type Alias read_fonts::tables::gdef::LigGlyph
source · pub type LigGlyph<'a> = TableRef<'a, LigGlyphMarker>;
Expand description
Aliased Type§
struct LigGlyph<'a> { /* private fields */ }
Implementations§
source§impl<'a> LigGlyph<'a>
impl<'a> LigGlyph<'a>
sourcepub fn caret_count(&self) -> u16
pub fn caret_count(&self) -> u16
Number of CaretValue tables for this ligature (components - 1)
sourcepub fn caret_value_offsets(&self) -> &'a [BigEndian<Offset16>]
pub fn caret_value_offsets(&self) -> &'a [BigEndian<Offset16>]
Array of offsets to CaretValue tables, from beginning of LigGlyph table — in increasing coordinate order
sourcepub fn caret_values(&self) -> ArrayOfOffsets<'a, CaretValue<'a>, Offset16>
pub fn caret_values(&self) -> ArrayOfOffsets<'a, CaretValue<'a>, Offset16>
A dynamically resolving wrapper for caret_value_offsets
.