Module Rose_tree

* A Rose_tree.t is a tree with at least 1 element where a node * has a variable number of successors. * *

type 'a t =
| T of 'a * 'a t list
val to_yojson : ( 'a -> Yojson.Safe.t ) -> 'a t -> Yojson.Safe.t
val of_yojson : ( Yojson.Safe.t -> 'a Ppx_deriving_yojson_runtime.error_or ) -> Yojson.Safe.t -> 'a t Ppx_deriving_yojson_runtime.error_or
val root : 'a t -> 'a
val children : 'a t -> 'a t list
val print : ?whitespace:int -> element_to_string:( 'a -> string ) -> 'a t -> unit
val of_list_exn : ?subtrees:'a t list -> 'a list -> 'a t
val of_non_empty_list : ?subtrees:'a t list -> 'a Mina_stdlib.Nonempty_list.t -> 'a t
val equal : f:( 'a -> 'a -> bool ) -> 'a t -> 'a t -> bool
val equiv : f:( 'a -> 'a -> bool ) -> 'a t -> 'a t -> bool
val iter : 'a t -> f:( 'a -> unit ) -> unit
val map : 'a t -> f:( 'a -> 'b ) -> 'b t
val fold_map : 'a t -> init:'b -> f:( 'b -> 'a -> 'b ) -> 'b t
val fold_map_over_subtrees : 'a t -> init:'b -> f:( 'b -> 'a t -> 'b ) -> 'b t
val flatten : 'a t -> 'a list
module Deferred : sig ... end
module Or_error : sig ... end