module CCIntMap:sig..end
status: stable
Since 0.10
type 'a t
val empty : 'a t
val singleton : int -> 'a -> 'a t
val doubleton : int -> 'a -> int -> 'a -> 'a t
val mem : int -> 'a t -> bool
val find : int -> 'a t -> 'a option
val find_exn : int -> 'a t -> 'a
val add : int -> 'a -> 'a t -> 'a t
val remove : int -> 'a t -> 'a t
val equal : eq:('a -> 'a -> bool) -> 'a t -> 'a t -> boolequal ~eq a b checks whether a and b have the same set of pairs
(key, value), comparing values with eqval compare : cmp:('a -> 'a -> int) -> 'a t -> 'a t -> intval update : int -> ('a option -> 'a option) -> 'a t -> 'a t
val cardinal : 'a t -> intval iter : (int -> 'a -> unit) -> 'a t -> unit
val fold : (int -> 'a -> 'b -> 'b) -> 'a t -> 'b -> 'b
val mapi : (int -> 'a -> 'b) -> 'a t -> 'b t val map : ('a -> 'b) -> 'a t -> 'b t val choose : 'a t -> (int * 'a) option
val choose_exn : 'a t -> int * 'aNot_found if not pair was foundval union : (int -> 'a -> 'a -> 'a) -> 'a t -> 'a t -> 'a t
val inter : (int -> 'a -> 'a -> 'a) -> 'a t -> 'a t -> 'a t type'asequence =('a -> unit) -> unit
type'agen =unit -> 'a option
type'aklist =unit -> [ `Cons of 'a * 'a klist | `Nil ]
val add_list : 'a t -> (int * 'a) list -> 'a t
val of_list : (int * 'a) list -> 'a t
val to_list : 'a t -> (int * 'a) list
val add_seq : 'a t -> (int * 'a) sequence -> 'a t
val of_seq : (int * 'a) sequence -> 'a t
val to_seq : 'a t -> (int * 'a) sequence
val keys : 'a t -> int sequence
val values : 'a t -> 'a sequence
val add_gen : 'a t -> (int * 'a) gen -> 'a t val of_gen : (int * 'a) gen -> 'a t val to_gen : 'a t -> (int * 'a) gen val add_klist : 'a t -> (int * 'a) klist -> 'a t val of_klist : (int * 'a) klist -> 'a t val to_klist : 'a t -> (int * 'a) klist type'atree =unit -> [ `Nil | `Node of 'a * 'a tree list ]
val as_tree : 'a t -> [ `Leaf of int * 'a | `Node of int * int ] tree type'aprinter =Format.formatter -> 'a -> unit
val print : 'a printer -> 'a t printer