Module Kwmacro.Hashtbl

module Hashtbl: sig .. end
lookup module using imperative Hash tables.

Probably faster than alists for large numbers of macros.


type 'a table = (string, 'a Kwmacro.func) Hashtbl.t 
val create : (string * 'a Kwmacro.func) list -> (string, 'a Kwmacro.func) Hashtbl.t
val lookup : (string, 'a) Hashtbl.t -> string -> 'a