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