sig
module Ix : INDEX
type +'a t
val empty : 'a Store_intf.STORE.t
val is_empty : 'a Store_intf.STORE.t -> bool
val cardinal : 'a Store_intf.STORE.t -> int
val next_ix : 'a Store_intf.STORE.t -> Ix.t
val singleton : 'a -> Ix.t * 'a Store_intf.STORE.t
val add : 'a -> 'a Store_intf.STORE.t -> Ix.t * 'a Store_intf.STORE.t
val find : Ix.t -> 'a Store_intf.STORE.t -> 'a
val update : Ix.t -> 'a -> 'a Store_intf.STORE.t -> 'a Store_intf.STORE.t
val remove : Ix.t -> 'a Store_intf.STORE.t -> 'a Store_intf.STORE.t
val iter : ('a -> unit) -> 'a Store_intf.STORE.t -> unit
val iteri : (Ix.t -> 'a -> unit) -> 'a Store_intf.STORE.t -> unit
val map : ('a -> 'b) -> 'a Store_intf.STORE.t -> 'b Store_intf.STORE.t
val mapi :
(Ix.t -> 'a -> 'b) -> 'a Store_intf.STORE.t -> 'b Store_intf.STORE.t
val fold : ('a -> 'b -> 'b) -> 'a Store_intf.STORE.t -> 'b -> 'b
val foldi : (Ix.t -> 'a -> 'b -> 'b) -> 'a Store_intf.STORE.t -> 'b -> 'b
val to_list : 'a Store_intf.STORE.t -> (Ix.t * 'a) list
val choose : 'a Store_intf.STORE.t -> Ix.t * 'a
val filter :
(Ix.t -> 'a -> bool) -> 'a Store_intf.STORE.t -> 'a Store_intf.STORE.t
val partition :
(Ix.t -> 'a -> bool) ->
'a Store_intf.STORE.t -> 'a Store_intf.STORE.t * 'a Store_intf.STORE.t
val eq_classes :
('a -> 'a -> bool) ->
'a Store_intf.STORE.t -> ('a * 'a Store_intf.STORE.t) list
val get_ix_map : 'a Store_intf.STORE.t -> 'a Ix.Map.t
end