jon.recoil.org

Module Odoc_utils.TreeSource

Sourcetype 'a tree = {
  1. node : 'a;
  2. children : 'a Odoc_utils.Tree.forest;
}
Sourceand 'a forest = 'a Odoc_utils.Tree.tree list
Sourceval leaf : 'a -> 'a Odoc_utils.Tree.tree
Sourcemodule type S = sig ... end
include Odoc_utils.Tree.S with type 'a t = 'a Odoc_utils.Tree.tree
Sourceval fold_left : f:('acc -> 'a -> 'acc) -> 'acc -> 'a Odoc_utils.Tree.t -> 'acc
Sourceval iter : f:('a -> unit) -> 'a Odoc_utils.Tree.t -> unit
Sourceval map : f:('a -> 'b) -> 'a Odoc_utils.Tree.t -> 'b Odoc_utils.Tree.t
Sourcemodule Forest : sig ... end