The OpenD Programming Language

YearQuarter.day

struct YearQuarter
@property const @safe pure nothrow @nogc
ubyte
day

Examples

auto yq = YearQuarter(2000, Quarter.q4);
assert(yq.day == 1);
assert(yq.day(AssumePeriod.end) == 31);

Meta