You can search for identifiers within the package.
in-package search v0.2.0
otfm
Otfm.Tag
Tags.
OpenType tags are four bytes identifiers.
type t = tag
The type for OpenType tags.
val cmap : tag
The cmap table.
val head : tag
The head table.
val hhea : tag
The hhea table.
val hmtx : tag
The hmtx table.
val maxp : tag
The maxp table.
val name : tag
The name table.
val os2 : tag
The os2 table.
val post : tag
The post table.
val cvt : tag
The cvt table.
val fpgm : tag
The fpgm table.
val glyf : tag
The glyf table.
val loca : tag
The loca table.
val prep : tag
The prep table.
val cff : tag
The CFF table.
val vorg : tag
The VORG table.
val ebdt : tag
The EBDT table.
val eblc : tag
The EBLC table.
val ebsc : tag
The EBSC table.
val dsig : tag
The DSIG table.
val gasp : tag
The gasp table.
val hdmx : tag
The hdmx table.
val kern : tag
The kern table.
val ltsh : tag
The LTSH table.
val pclt : tag
The PCLT table.
val vdmx : tag
The VDMX table.
val vhea : tag
The vhea table.
val vmtx : tag
The vmtx table.
val base : tag
The BASE table.
val gdef : tag
The GDEF table.
val gpos : tag
The GPOS table.
val gsub : tag
The GSUB table.
val jstf : tag
The JSTF table.
val of_bytes : string -> tag
of_bytes s is a tag corresponding to s.
of_bytes s
s
Invalid_argument
if s is not four byte long.
val to_bytes : tag -> string
to_string t is the tag as a four byte long string.
to_string t
val to_int32 : tag -> int32
to_int32 t is the tag as an unsigned 32 bits integer.
to_int32 t
val of_int32 : int32 -> tag
of_int32 t is the tag from and unsigned 32 bits integer.
of_int32 t
val compare : tag -> tag -> int
compare t t' is Pervasives.compare t t'
compare t t'
Pervasives.compare t t'
val pp : Format.formatter -> tag -> unit
pp t prints a textual representation of t on ppf.
pp t
t
ppf