mirror of https://github.com/adamdruppe/arsd.git
Improve getting started section of `arsd.ini`
This commit is contained in:
parent
fd5dab8c43
commit
e29d8fcd22
11
ini.d
11
ini.d
|
@ -12,9 +12,14 @@
|
||||||
### Getting started
|
### Getting started
|
||||||
|
|
||||||
$(LIST
|
$(LIST
|
||||||
* [parseIniDocument] – Parse INI string into a DOM-like [IniDocument].
|
* [parseIniDocument] – Parses a string of INI data and stores the
|
||||||
* [parseIniAA] – Parse INI string into an associative array.
|
result in a DOM-inspired [IniDocument] structure.
|
||||||
* [stringifyIni] – Serialize an [IniDocument] or an associative array
|
* [parseIniAA] – Parses a string of INI data and stores the result
|
||||||
|
in an associative array (named sections) of associative arrays
|
||||||
|
(key/value pairs of the section).
|
||||||
|
* [parseIniMergedAA] – Parses a string of INI data and stores the
|
||||||
|
result in a flat associative array (with all sections merged).
|
||||||
|
* [stringifyIni] – Serializes an [IniDocument] or an associative array
|
||||||
to a string of data in INI format.
|
to a string of data in INI format.
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue