Tree with a large branching factor for logarithmic operations with a low multiplicative factor.
status: experimental. DO NOT USE (yet)
val empty : 'a tval is_empty : _ t ‑> boolval return : 'a ‑> 'a tval length : _ t ‑> intval get : int ‑> 'a t ‑> 'a optionval iter : f:('a ‑> unit) ‑> 'a t ‑> unitval iteri : f:(int ‑> 'a ‑> unit) ‑> 'a t ‑> unitIterate on elements with their index, in increasing order.
val iteri_rev : f:(int ‑> 'a ‑> unit) ‑> 'a t ‑> unitIterate on elements with their index, but starting from the end.
val fold : f:('b ‑> 'a ‑> 'b) ‑> x:'b ‑> 'a t ‑> 'bval foldi : f:('b ‑> int ‑> 'a ‑> 'b) ‑> x:'b ‑> 'a t ‑> 'bval choose : 'a t ‑> 'a optionval to_list : 'a t ‑> 'a listval of_list : 'a list ‑> 'a t