package containers

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type !'a t = ('a, unit) PHashtbl.t
val empty : ?max_load:float -> ?eq:('a -> 'a -> bool) -> ?hash:('a -> int) -> int -> 'a t
val copy : 'a t -> 'a t
val clear : 'a t -> unit
val cardinal : 'a t -> int
val mem : 'a t -> 'a -> bool
val add : 'a t -> 'a -> unit
val remove : 'a t -> 'a -> unit
val iter : ('a -> unit) -> 'a t -> unit
val fold : ('b -> 'a -> 'b) -> 'b -> 'a t -> 'b
val filter : ('a -> bool) -> 'a t -> unit
val to_seq : 'a t -> 'a CCSequence.t
val of_seq : 'a t -> 'a CCSequence.t -> unit
val union : ?into:'a t -> 'a t -> 'a t -> 'a t
val inter : ?into:'a t -> 'a t -> 'a t -> 'a t
OCaml

Innovation. Community. Security.