module type S = sig ... end
module type S1 = sig ... end
module type S2 = sig ... end
module type Indexable = sig ... end
The functor Hexdump.Of_indexable
uses length
and get
to iterate over the characters in a value and produce a hex dump.
module type Indexable1 = sig ... end
module type Indexable2 = sig ... end
module type Hexdump = sig ... end