Add further doc comments to `arsd.ini`

This commit is contained in:
Elias Batek 2025-02-07 05:57:35 +01:00
parent 7d13f7cf22
commit 5d3a57ea1a
1 changed files with 19 additions and 4 deletions

23
ini.d
View File

@ -34,30 +34,45 @@ private bool hasFeature(ulong dialect, ulong feature) @safe pure nothrow @nogc {
return ((dialect & feature) > 0);
}
///
/++
Type of a token (as output by the parser)
+/
public enum IniTokenType {
/// indicates an error
invalid = 0,
/// insignificant whitespace
whitespace,
/// section header opening bracket
bracketOpen,
/// section header closing bracket
bracketClose,
/// key/value separator, e.g. '='
keyValueSeparator,
/// line break, i.e. LF, CRLF or CR
lineBreak,
/// text comment
comment,
/// item key data
key,
/// item value data
value,
/// section name data
sectionHeader,
}
///
/++
Token of INI data (as output by the parser)
+/
struct IniToken(string) if (isCompatibleString!string) {
///
IniTokenType type;
///
/++
Content
+/
string data;
}