package hashset

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type 'a t
val create : int -> 'a t
val clear : 'a t -> unit
val add : 'a t -> 'a -> unit
val copy : 'a t -> 'a t
val mem : 'a t -> 'a -> bool
val remove : 'a t -> 'a -> unit
val cardinal : 'a t -> int
val iter : ('a -> unit) -> 'a t -> unit
val fold : ('a -> 'b -> 'b) -> 'a t -> 'b -> 'b
module type HashedType = sig ... end
module type S = sig ... end
module Make (H : HashedType) : S with type elt = H.t