Module Kwmacro.Assoc

module Assoc: sig .. end
lookup module using association lists

Probably the most space- and even time-efficient choice for a small collection of macros.


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