Module type Kwmacro.Lookup

module type Lookup = sig .. end
The type of macro lookup modules.

type 'a table 
The type of macro lookup tables.

The parameter is the type of auxiliary expansion data (the first parameter of a called macro, and the data parameter of the Kwmacro.Make.expand function).

val create : (string * 'a Kwmacro.func) list -> 'a table
Create a macro lookup table from an association list mapping macro names to the functions that implement them.
val lookup : 'a table -> string -> 'a Kwmacro.func
Lookup a macro in a macro lookup table by name.
Raises Undef raised (with name as parameter) if name is not found.