Module Entry.Pack
type format
=
|
ILLEGAL
do not used it
|
BYTE
|
ASCII
|
SHORT
|
LONG
|
RATIONAL
|
SBYTE
|
UNDEFINED
|
SSHORT
|
SLONG
|
SRATIONAL
|
FLOAT
|
DOUBLE
val string_of_format : format -> string
type unpacked
=
val unpack : format -> int -> string -> unpacked
unpack format components packed
components
are the number of elements inpacked
, not the bytes ofpacked
.
val format : Stdlib.Format.formatter -> unpacked -> unit