Base.Hash_set
val sexp_of_t : ('a -> Sexplib0.Sexp.t) -> 'a t -> Sexplib0.Sexp.t
We use [@@deriving sexp_of]
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 sexp]
, to use polymorphic comparison and hashing.
module Key = Hashtbl.Key
module type Creators = sig ... end
module type Creators_generic = sig ... end
module type For_deriving = sig ... end
type nonrec ('key, 'z) create_options =
?growth_allowed:bool ->
?size:int ->
'key Hashtbl.Key.t ->
'z
include Creators with type 'a t := 'a t
val create : ?growth_allowed:bool -> ?size:int -> 'a Hashtbl.Key.t -> 'a t
val of_list :
?growth_allowed:bool ->
?size:int ->
'a Hashtbl.Key.t ->
'a list ->
'a t
module type Accessors = sig ... end
include Accessors with type 'a t := 'a t with type 'a elt = 'a
include Container.Generic with type ('a, _) t := 'a t with type 'a elt = 'a
val length : _ t -> int
val is_empty : _ t -> bool
val fold_until :
'a t ->
init:'acc ->
f:('acc -> 'a elt -> ('acc, 'final) Container.Continue_or_stop.t) ->
finish:('acc -> 'final) ->
'final
val sum :
(module Container.Summable with type t = 'sum) ->
'a t ->
f:('a elt -> 'sum) ->
'sum
val mem : 'a t -> 'a -> bool
override Container.Generic.mem
val add : 'a t -> 'a -> unit
val strict_add : 'a t -> 'a -> unit Or_error.t
strict_add t x
returns Ok ()
if the x
was not in t
, or an Error
if it was.
val strict_add_exn : 'a t -> 'a -> unit
val remove : 'a t -> 'a -> unit
val strict_remove : 'a t -> 'a -> unit Or_error.t
strict_remove t x
returns Ok ()
if the x
was in t
, or an Error
if it was not.
val strict_remove_exn : 'a t -> 'a -> unit
val clear : 'a t -> unit
val filter_inplace : 'a t -> f:('a -> bool) -> unit
inter t1 t2
computes the set intersection of t1
and t2
. Runs in O(min(length t1, length t2)). Behavior is undefined if t1
and t2
don't have the same equality function.
module Poly : sig ... end
A hash set that uses polymorphic comparison
include For_deriving with type 'a t := 'a t
module type M_of_sexp = sig ... end
module type Sexp_of_m = sig ... end
module type Equal_m = sig ... end
M
is meant to be used in combination with OCaml applicative functor types:
val m__t_sexp_grammar :
(module Base__.Hash_set_intf.M_sexp_grammar with type t = 'elt) ->
'elt t Sexplib0.Sexp_grammar.t