You can search for identifiers within the package.
in-package search v0.2.0
type 'a htree =
| Node of float * 'a htree * 'a htree
| Leaf of float * 'a
Type for Huffman trees
type 'a t = 'a htree
val compare : 'a htree -> 'a0 htree -> int
Compare two huffman trees
a tree
val combine : 'a htree -> 'a0 htree -> 'a1 htree
Combine twho huffman trees
val sort : 'a htree list -> 'a htree list
Sort a list of huffman trees
the list
val huffman : ('a * float) list -> 'b htree
Create a Huffman tree based on the description of an emitter
Symbol -> Frequency association
val dump_as_dot : string -> char htree -> unit
Outputs a tree to a dot file
The output file
The Huffman tree