odoc.odoc_utils
Odoc_utils.Tree
odoc
odoc.document
odoc.examples
odoc.html
odoc.html_support_files
odoc.index
odoc.json_index
odoc.latex
odoc.loader
odoc.manpage
odoc.model
odoc.model_desc
odoc.ocamlary
odoc.occurrences
odoc.odoc
odoc.search
odoc.search_html_frontend
odoc.syntax_highlighter
odoc.xref2
odoc.xref_test
type 'a tree = {
node : 'a;
children : 'a forest;
}
and 'a forest = 'a tree list
val leaf : 'a -> 'a tree
module type S = sig ... end
include S with type 'a t = 'a tree
type 'a t = 'a tree
val fold_left : f:('acc -> 'a -> 'acc) -> 'acc -> 'a t -> 'acc
val iter : f:('a -> unit) -> 'a t -> unit
val map : f:('a -> 'b) -> 'a t -> 'b t
val to_json : ('a -> Json.json) -> 'a t -> Json.json
module Forest : sig ... end