Struct IniLikeReader
Object for iterating through ini-like file entries.
struct IniLikeReader(Range)
if (isInputRange!Range && isSomeString!(ElementType!Range) && is(ElementEncodingType!(ElementType!Range) : char));
Constructors
Name | Description |
this
|
Construct from other range of strings.
|
Methods
Name | Description |
byGroup
|
Iterate thorugh groups of .ini-like file.
|
byLeadingLines
|
Iterate through lines before any group header. It does not check if all lines are comments or empty lines.
|
Inner structs
Name | Description |
Group
|
Object representing single group (section) being parsed in .ini-like file.
|