package acgtk

  1. Overview
  2. Docs

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

module type CorrespondanceTableTYPE = sig ... end

Signature of modules encoding symbol tables

module type IdGen_TYPE = sig ... end

Signature of modules encoding a generator of identifiers

module type IdType = sig ... end

Signature of encoding identifiers

module 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

module IntIdGen : IdGen_TYPE with type id = int

Module implementing the special case where identifiers ar integers.