summaryrefslogtreecommitdiff
path: root/src/vytree.mli
blob: 6a991c02e06d107a586e4283018ab85c1dc6eedf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
type 'a t

exception Empty_path
exception Duplicate_child
exception Nonexistent_path

val make : string -> 'a -> 'a t

val name_of_node : 'a t -> string
val data_of_node : 'a t -> 'a
val children_of_node : 'a t -> 'a t list

val insert_child :
  'a -> 'a t -> string list -> 'a -> 'a t

val list_children : 'a t -> string list