IniLikeReader

Object for iterating through ini-like file entries.

struct IniLikeReader (
Range
) if (
isInputRange!Range &&
is(ElementType!Range : const(char[]))
) {}

Constructors

this
this(Range range)

Construct from other range of strings.

Members

Functions

byFirstLines
auto byFirstLines()

Iterate through lines before any group header. It does not check if all lines are comments or empty lines.

byGroup
auto byGroup()

Iterate thorugh groups of ini-like file.

Meta