Module UtilsLib.IdGeneratorSource

This module implements various useful modules to generate IDs and to keep track of there association with string as in a symbol table

Log is the log module for IdGenerator

Sourcemodule type CorrespondanceTableTYPE = sig ... end

Signature of modules encoding symbol tables

Sourcemodule type IdGen_TYPE = sig ... end

Signature of modules encoding a generator of identifiers

Sourcemodule type IdType = sig ... end

Signature of encoding identifiers

Sourcemodule IdGen (ID : IdType) : IdGen_TYPE with type id = ID.t

This module is a functor that generates a identifier generator from a module implementing these identifiers

Sourcemodule IntIdGen : IdGen_TYPE with type id = int

Module implementing the special case where identifiers ar integers.