IniLikeGroup.emptyByKeyValue

Empty range of the same type as byKeyValue. Can be used in derived classes if it's needed to have empty range.

class IniLikeGroup
@nogc @safe static nothrow
emptyByKeyValue
()

Return Value

Type: auto

Empty range of Tuple!(string, "key", string, "value").

Examples

assert(emptyByKeyValue().empty);
auto group = new IniLikeGroup("Group name");
static assert(is(typeof(emptyByKeyValue()) == typeof(group.byKeyValue()) ));

Meta