We use [@@deriving_inline sexp_of][@@@end] but not [@@deriving sexp] because we want people to be
explicit about the hash and comparison functions used when creating hashtables. One
can use Hash_set.Poly.t, which does have [@@deriving_inline sexp][@@@end], to use polymorphic
comparison and hashing.
include Hash_set_intf.Creators with type a t := a t with type 'a elt = 'a with type (key, z) create_options := (key, z) Hash_set_intf.create_options_with_first_class_moduleval create : ('a, unit ‑> 'a t) create_optionsval of_list : ('a, 'a elt list ‑> 'a t) create_optionsinclude Hash_set_intf.Accessors with type a t := a t with type a elt := a eltinclude Container.Genericval length : _ t ‑> intval is_empty : _ t ‑> boolval fold_until : 'a t ‑> init:'accum ‑> f:('accum ‑> 'a elt ‑> ('accum, 'stop) Container_intf.Continue_or_stop.t) ‑> ('accum, 'stop) Container_intf.Finished_or_stopped_early.tval sum : (module Commutative_group.S with type t = 'sum) ‑> 'a t ‑> f:('a elt ‑> 'sum) ‑> 'sumval add : 'a t ‑> 'a ‑> unitval strict_add : 'a t ‑> 'a ‑> unit Or_error.tval strict_add_exn : 'a t ‑> 'a ‑> unitval remove : 'a t ‑> 'a ‑> unitval strict_remove : 'a t ‑> 'a ‑> unit Or_error.tval strict_remove_exn : 'a t ‑> 'a ‑> unitval clear : 'a t ‑> unitval filter_inplace : 'a t ‑> f:('a ‑> bool) ‑> unitval hashable : 'key t ‑> 'key Hashtbl_intf.Hashable.tmodule type Sexp_of_m : sig ... endmodule type M_of_sexp : sig ... endmodule Using_hashable : sig ... end