Module CCGraph.Lazy_tree

module Lazy_tree: sig .. end

type ('v, 'e) t = {
   vertex : 'v;
   children : ('e * ('v, 'e) t) list Lazy.t;
}
val map_v : ('a -> 'b) -> ('a, 'e) t -> ('b, 'e) t
val fold_v : ('acc -> 'v -> 'acc) -> 'acc -> ('v, 'a) t -> 'acc