sig
  type ('a, 'b) t = ('a, 'b) Hashtbl.Poly.t
  val hashable : 'Hashable.t
  type 'a key = 'a
  val create :
    ('a key, unit -> ('a, 'b) t)
    Core_hashtbl_intf.create_options_without_hashable
  val of_alist :
    ('a key,
     ('a key * 'b) list -> [ `Duplicate_key of 'a key | `Ok of ('a, 'b) t ])
    Core_hashtbl_intf.create_options_without_hashable
  val of_alist_report_all_dups :
    ('a key,
     ('a key * 'b) list ->
     [ `Duplicate_keys of 'a key list | `Ok of ('a, 'b) t ])
    Core_hashtbl_intf.create_options_without_hashable
  val of_alist_exn :
    ('a key, ('a key * 'b) list -> ('a, 'b) t)
    Core_hashtbl_intf.create_options_without_hashable
  val of_alist_multi :
    ('a key, ('a key * 'b) list -> ('a, 'b list) t)
    Core_hashtbl_intf.create_options_without_hashable
  val create_mapped :
    ('a key,
     get_key:('-> 'a key) ->
     get_data:('-> 'b) ->
     'r list -> [ `Duplicate_keys of 'a key list | `Ok of ('a, 'b) t ])
    Core_hashtbl_intf.create_options_without_hashable
  val create_with_key :
    ('a key,
     get_key:('-> 'a key) ->
     'r list -> [ `Duplicate_keys of 'a key list | `Ok of ('a, 'r) t ])
    Core_hashtbl_intf.create_options_without_hashable
  val create_with_key_exn :
    ('a key, get_key:('-> 'a key) -> 'r list -> ('a, 'r) t)
    Core_hashtbl_intf.create_options_without_hashable
  val group :
    ('a key,
     get_key:('-> 'a key) ->
     get_data:('-> 'b) -> combine:('-> '-> 'b) -> 'r list -> ('a, 'b) t)
    Core_hashtbl_intf.create_options_without_hashable
  val sexp_of_key : ('a, 'b) t -> 'a key -> Sexplib.Sexp.t
  val clear : ('a, 'b) t -> unit
  val copy : ('a, 'b) t -> ('a, 'b) t
  val invariant : ('a, 'b) t -> unit
  val fold :
    ('a, 'b) t -> init:'-> f:(key:'a key -> data:'-> '-> 'c) -> 'c
  val iter : ('a, 'b) t -> f:(key:'a key -> data:'-> unit) -> unit
  val existsi : ('a, 'b) t -> f:(key:'a key -> data:'-> bool) -> bool
  val exists : ('a, 'b) t -> f:('-> bool) -> bool
  val length : ('a, 'b) t -> int
  val is_empty : ('a, 'b) t -> bool
  val mem : ('a, 'b) t -> 'a key -> bool
  val remove : ('a, 'b) t -> 'a key -> unit
  val remove_one : ('a, 'b list) t -> 'a key -> unit
  val replace : ('a, 'b) t -> key:'a key -> data:'-> unit
  val set : ('a, 'b) t -> key:'a key -> data:'-> unit
  val add : ('a, 'b) t -> key:'a key -> data:'-> [ `Duplicate | `Ok ]
  val add_exn : ('a, 'b) t -> key:'a key -> data:'-> unit
  val change : ('a, 'b) t -> 'a key -> ('b option -> 'b option) -> unit
  val add_multi : ('a, 'b list) t -> key:'a key -> data:'-> unit
  val remove_multi : ('a, 'b list) t -> 'a key -> unit
  val map : ('a, 'b) t -> f:('-> 'c) -> ('a, 'c) t
  val mapi : ('a, 'b) t -> f:(key:'a key -> data:'-> 'c) -> ('a, 'c) t
  val filter_map : ('a, 'b) t -> f:('-> 'c option) -> ('a, 'c) t
  val filter_mapi :
    ('a, 'b) t -> f:(key:'a key -> data:'-> 'c option) -> ('a, 'c) t
  val filter : ('a, 'b) t -> f:('-> bool) -> ('a, 'b) t
  val filteri : ('a, 'b) t -> f:(key:'a key -> data:'-> bool) -> ('a, 'b) t
  val partition_map :
    ('a, 'b) t ->
    f:('-> [ `Fst of '| `Snd of 'd ]) -> ('a, 'c) t * ('a, 'd) t
  val partition_mapi :
    ('a, 'b) t ->
    f:(key:'a key -> data:'-> [ `Fst of '| `Snd of 'd ]) ->
    ('a, 'c) t * ('a, 'd) t
  val partition_tf : ('a, 'b) t -> f:('-> bool) -> ('a, 'b) t * ('a, 'b) t
  val partitioni_tf :
    ('a, 'b) t ->
    f:(key:'a key -> data:'-> bool) -> ('a, 'b) t * ('a, 'b) t
  val find_or_add : ('a, 'b) t -> 'a key -> default:(unit -> 'b) -> 'b
  val find : ('a, 'b) t -> 'a key -> 'b option
  val find_exn : ('a, 'b) t -> 'a key -> 'b
  val iter_vals : ('a, 'b) t -> f:('-> unit) -> unit
  val merge :
    ('k, 'a) t ->
    ('k, 'b) t ->
    f:(key:'k key ->
       [ `Both of 'a * '| `Left of '| `Right of 'b ] -> 'c option) ->
    ('k, 'c) t
  val merge_into :
    f:(key:'a key -> '-> 'b option -> 'b option) ->
    src:('a, 'b) t -> dst:('a, 'b) t -> unit
  val keys : ('a, 'b) t -> 'a key list
  val data : ('a, 'b) t -> 'b list
  val filter_inplace : ('a, 'b) t -> f:('-> bool) -> unit
  val filteri_inplace : ('a, 'b) t -> f:('a key -> '-> bool) -> unit
  val equal : ('a, 'b) t -> ('a, 'b) t -> ('-> '-> bool) -> bool
  val to_alist : ('a, 'b) t -> ('a key * 'b) list
  val incr : ?by:int -> ('a, int) t -> 'a key -> unit
  val t_of_sexp :
    (Sexplib.Sexp.t -> 'a) ->
    (Sexplib.Sexp.t -> 'b) -> Sexplib.Sexp.t -> ('a, 'b) Hashtbl.Poly.t
  val sexp_of_t :
    ('-> Sexplib.Sexp.t) ->
    ('-> Sexplib.Sexp.t) -> ('a, 'b) Hashtbl.Poly.t -> Sexplib.Sexp.t
  val bin_t :
    'Bin_prot.Type_class.t ->
    'Bin_prot.Type_class.t ->
    ('a, 'b) Hashtbl.Poly.t Bin_prot.Type_class.t
  val bin_read_t :
    'Bin_prot.Unsafe_read_c.reader ->
    'Bin_prot.Unsafe_read_c.reader ->
    ('a, 'b) Hashtbl.Poly.t Bin_prot.Read_ml.reader
  val bin_read_t_ :
    'Bin_prot.Unsafe_read_c.reader ->
    'Bin_prot.Unsafe_read_c.reader ->
    ('a, 'b) Hashtbl.Poly.t Bin_prot.Unsafe_read_c.reader
  val bin_read_t__ :
    'Bin_prot.Unsafe_read_c.reader ->
    'Bin_prot.Unsafe_read_c.reader ->
    (int -> ('a, 'b) Hashtbl.Poly.t) Bin_prot.Unsafe_read_c.reader
  val bin_reader_t :
    'Bin_prot.Type_class.reader ->
    'Bin_prot.Type_class.reader ->
    ('a, 'b) Hashtbl.Poly.t Bin_prot.Type_class.reader
  val bin_size_t :
    'Bin_prot.Size.sizer ->
    'Bin_prot.Size.sizer ->
    ('a, 'b) Hashtbl.Poly.t Bin_prot.Size.sizer
  val bin_write_t :
    'Bin_prot.Unsafe_write_c.writer ->
    'Bin_prot.Unsafe_write_c.writer ->
    ('a, 'b) Hashtbl.Poly.t Bin_prot.Write_ml.writer
  val bin_write_t_ :
    'Bin_prot.Unsafe_write_c.writer ->
    'Bin_prot.Unsafe_write_c.writer ->
    ('a, 'b) Hashtbl.Poly.t Bin_prot.Unsafe_write_c.writer
  val bin_writer_t :
    'Bin_prot.Type_class.writer ->
    'Bin_prot.Type_class.writer ->
    ('a, 'b) Hashtbl.Poly.t Bin_prot.Type_class.writer
end