documentation (or tutorial or example) of ADT/StringMap.h

Hello All

Where is the documentation for ADT/StringMap.h (given into account that I am not quite familiar with stdc++ library)?

In particular, I am surprised that key strings are specified by their start and end, I was expecting C-like strings, ie null terminated array of chars.

Regards.

Hello All

Where is the documentation for ADT/StringMap.h (given into account that
I am not quite familiar with stdc++ library)?

The documentation is in the header file itself.

In particular, I am surprised that key strings are specified by their
start and end, I was expecting C-like strings, ie null terminated array
of chars.

This representation allows for nul characters in the string.

-Chris