sig
  type elt
  type 'a hash_set = 'a t
  type t = elt hash_set
  type 'a t_ = t
  type 'a elt_ = elt
  val create :
    ('a, unit -> 'a t_) Hash_set_intf.create_options_without_hashable
  val of_list :
    ('a, 'a elt_ list -> 'a t_) Hash_set_intf.create_options_without_hashable
  val t_of_sexp : Sexplib.Sexp.t -> t
  val sexp_of_t : t -> Sexplib.Sexp.t
end