package logtk

  1. Overview
  2. Docs
On This Page
  1. Hashconsing
Legend:
Library
Module
Module type
Parameter
Class
Class type

Hashconsing

module type HashedType = sig ... end
module type S = sig ... end
module Make (X : HashedType) : S with type elt = X.t
module MakeNonWeak (X : HashedType) : S with type elt = X.t

Version that uses a regular Hashtbl, rather than a weak table. Never frees memory, but might be faster.