Odoc_utils.Tree
type 'a tree = {
node : 'a;
children : 'a Odoc_utils.Tree.forest;
}
and 'a forest = 'a Odoc_utils.Tree.tree list
val leaf : 'a -> 'a Odoc_utils.Tree.tree
module type S = sig ... end
include Odoc_utils.Tree.S with type 'a t = 'a Odoc_utils.Tree.tree
type 'a t = 'a Odoc_utils.Tree.tree
val fold_left : f:('acc -> 'a -> 'acc) -> 'acc -> 'a Odoc_utils.Tree.t -> 'acc
val iter : f:('a -> unit) -> 'a Odoc_utils.Tree.t -> unit
val map : f:('a -> 'b) -> 'a Odoc_utils.Tree.t -> 'b Odoc_utils.Tree.t
val to_json : ('a -> Odoc_utils.Json.json) -> 'a Odoc_utils.Tree.t -> Odoc_utils.Json.json
module Forest : sig ... end