Section.isStandard

struct Section
const @property
bool
isStandard
()

Return Value

Type: bool

true if name is one of STANDARD_SECTIONS

Examples

Section s;
s.name = "Authors";
assert(s.isStandard);
s.name = "Butterflies";
assert(!s.isStandard);

Meta