The OpenD Programming Language

YearQuarter.month

struct YearQuarter
@property const @safe pure nothrow @nogc
month

Examples

auto yq = YearQuarter(2000, Quarter.q4);
assert(yq.month == 10);
assert(yq.month(AssumePeriod.end) == 12);

Meta