makeIniFilteredParser

Convenience function to create a low-level filtered parser

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

Examples

string regular;
auto parser1 = makeIniFilteredParser(regular);

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

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

See Also

Meta