sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
On This Page
module H : sig ... end
include S with type t = H.t and type cat := int
include Popop_stdlib.Datatype with type t = H.t
val hash_fold_t : t Base.Hash.folder
module M : Map_intf.PMap with type key = t
module H : Exthtbl.Hashtbl.S with type key = t
hashcons n
hash-cons the value n
i.e. returns any existing value in the table equal to n
, if any; otherwise, creates a new value with function tag
, stores it in the table and returns it.
val iter : (t -> unit) -> unit
iter f
iterates f
over all elements of the table .
Return statistics on the table. The numbers are, in order: table length, number of entries, sum of bucket lengths, smallest bucket length, median bucket length, biggest bucket length.
val iter_cat : (t -> unit) -> int -> unit