IniSection

Section of an INI document

Data entries from the document’s root – i.e. those with no designated section – are stored in a section with its name set to null.
struct IniSection (
string
) if (
isCompatibleString!string
) {}

Members

Aliases

KeyValuePair
alias KeyValuePair = IniKeyValuePair!string

Variables

items
KeyValuePair[] items;

Data entries of the section

name
string name;

Name of the section

Meta