Table.Make_tableSourceThis modules provides the functor
Exceptions raised by functions
The type of the tables
The type of the key
add k v t modifies the table t to add the element v at key k. The optional value overwrite is set to false by default. When set to false, the add function raises Table.TABLE.Conflict when the key k was already associated with some value. When set to true, the add function does not raise !Table.TABLE.Conflict if some value was already associated to the key
find k t returns the element associated with the key k in t. Raises Table.TABLE.Not_found if no such element exists