package containers

  1. Overview
  2. Docs

Open-Addressing Hash-table

This module was previously named CCHashtbl, but the name is now used for an extension of the standard library's hashtables.

  • since 0.4
type 'a sequence = ('a -> unit) -> unit
module type S = sig ... end
module type HASHABLE = sig ... end
module Make (X : HASHABLE) : S with type key = X.t