Sourcetype 'a t = {mutable root : 'a node;mutable height : int;max_children : int;
} Sourceval init : ?max_children:??? -> unit -> 'a t Sourceval fold_int_range : start:int -> stop:int -> ('a -> int -> 'a) -> 'a -> 'a Sourceval find_int_range : start:int -> stop:int -> (int -> 'a option) -> 'a option Sourceval find_int_range_dec :
start:int ->
stop:int ->
(int -> 'a option) ->
'a option Sourceval insert_node : max_children:int -> 'a node -> V.t -> 'a -> int