Module CamomileLib.AvlTree
Avltree
val is_empty : 'a tree -> boolval height : 'a tree -> intval singleton_tree : 'a -> 'a treeval split_leftmost : 'a tree -> 'a * 'a treeval split_rightmost : 'a tree -> 'a * 'a treeval iter : ('a -> unit) -> 'a tree -> unitval fold : ('a -> 'b -> 'b) -> 'a tree -> 'b -> 'b