Hardcaml.ManglerMap a set of names to a set of unique names.
A mangler is a mapping from strings to the next available integer which should be added to the name to make it unique.
val sexp_of_t : t -> Sexplib0.Sexp.tval create : case_sensitive:Base.bool -> tCreate a new mangler.
val add_identifier : t -> Base.string -> [ `Ok | `Duplicate ]val add_identifiers_exn : t -> Base.string Base.list -> Base.unitAdd a list of identifiers to the mangler table. Raises if an identifier is already in the table.
val find_index : t -> Base.string -> Base.int Base.optionTest if the string is in the mangler, and return its mangler index if it is.
val mangle : t -> Base.string -> Base.stringmangle t name returns a unique, mangled name.