Expand description
The ini module provides all the things necessary to load and parse ini-syntax files. The most important of which is the Ini struct.
See the implementation documentation for more details.
Structsยง
- Ini
- The
Inistruct simply contains a nested hashmap of the loaded configuration, the default section header and comment symbols. - IniDefault
- The
IniDefaultstruct serves as a template to create otherIniobjects from. It can be used to store and load default properties from differentIniobjects. - Write
Options - Use this struct to define formatting options for the
pretty_writefunctions.