module Tag:sig
..end
OpenType tags are four bytes identifiers.
typet =
Otfm.tag
val cmap : Otfm.tag
val head : Otfm.tag
val hhea : Otfm.tag
val hmtx : Otfm.tag
val maxp : Otfm.tag
val name : Otfm.tag
val os2 : Otfm.tag
val post : Otfm.tag
val cvt : Otfm.tag
val fpgm : Otfm.tag
val glyf : Otfm.tag
val loca : Otfm.tag
val prep : Otfm.tag
val cff : Otfm.tag
val vorg : Otfm.tag
val ebdt : Otfm.tag
val eblc : Otfm.tag
val ebsc : Otfm.tag
val dsig : Otfm.tag
val gasp : Otfm.tag
val hdmx : Otfm.tag
val kern : Otfm.tag
val ltsh : Otfm.tag
val pclt : Otfm.tag
val vdmx : Otfm.tag
val vhea : Otfm.tag
val vmtx : Otfm.tag
val base : Otfm.tag
val gdef : Otfm.tag
val gpos : Otfm.tag
val gsub : Otfm.tag
val jstf : Otfm.tag
val of_bytes : string -> Otfm.tag
of_bytes s
is a tag corresponding to s
.
@Raise Invalid_argument if s
is not four byte long.val to_bytes : Otfm.tag -> string
to_string t
is the tag as a four byte long string.val to_int32 : Otfm.tag -> int32
to_int32 t
is the tag as an unsigned 32 bits integer.val of_int32 : int32 -> Otfm.tag
of_int32 t
is the tag from and unsigned 32 bits integer.val compare : Otfm.tag -> Otfm.tag -> int
compare t t'
is Pervasives.compare t t'
val pp : Format.formatter -> Otfm.tag -> unit
pp t
prints a textual representation of t
on ppf
.