Qed.IntmapMaps with integers keys using Patricia Trees.
From the paper of Chris Okasaki and Andrew Gill: 'Fast Mergeable Integer Maps'.
val empty : 'a tval singleton : int -> 'a -> 'a tval is_empty : 'a t -> boolval size : 'a t -> intval mem : int -> 'a t -> boolval find : int -> 'a t -> 'aor raise Not_found
insert (fun key v old -> ...) key v map
val iter : ( 'a -> unit ) -> 'a t -> unitval iteri : ( int -> 'a -> unit ) -> 'a t -> unitval fold : ( 'a -> 'b -> 'b ) -> 'a t -> 'b -> 'bval foldi : ( int -> 'a -> 'b -> 'b ) -> 'a t -> 'b -> 'bval mapl : ( int -> 'a -> 'b ) -> 'a t -> 'b listval for_all : ( int -> 'a -> bool ) -> 'a t -> boolval exists : ( int -> 'a -> bool ) -> 'a t -> boolval pp_tree : string -> Stdlib.Format.formatter -> 'a t -> unit