sig
  type elt = t
  type 'a hash_set = 'Hash_set.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
  val bin_size_t : t Bin_prot.Size.sizer
  val bin_write_t : t Bin_prot.Write.writer
  val bin_read_t : t Bin_prot.Read.reader
  val __bin_read_t__ : (int -> t) Bin_prot.Read.reader
  val bin_writer_t : t Bin_prot.Type_class.writer
  val bin_reader_t : t Bin_prot.Type_class.reader
  val bin_t : t Bin_prot.Type_class.t
end