makeIniParser

Convenience function to create a low-level parser

Unlike with the constructor of IniParser, the compiler is able to infer the string template parameter.
@safe pure nothrow
IniParser!(dialect, string)
makeIniParser
()
(
string rawIni
)

Examples

string regular;
auto parser1 = makeIniParser(regular);

char[] mutable;
auto parser2 = makeIniParser(mutable);

const(char)[] constChars;
auto parser3 = makeIniParser(constChars);

See Also

Meta