From e29d8fcd2220e63d76187e39aa658f8ca54798c4 Mon Sep 17 00:00:00 2001 From: Elias Batek Date: Sun, 16 Feb 2025 21:31:25 +0100 Subject: [PATCH] Improve getting started section of `arsd.ini` --- ini.d | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/ini.d b/ini.d index a09cd1d..6314d8c 100644 --- a/ini.d +++ b/ini.d @@ -12,9 +12,14 @@ ### Getting started $(LIST - * [parseIniDocument] – Parse INI string into a DOM-like [IniDocument]. - * [parseIniAA] – Parse INI string into an associative array. - * [stringifyIni] – Serialize an [IniDocument] or an associative array + * [parseIniDocument] – Parses a string of INI data and stores the + result in a DOM-inspired [IniDocument] structure. + * [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. )