The OpenD Programming Language

day

@safe pure @nogc const @safe pure nothrow @nogc @property
ubyte
day
()

Examples

auto d = Date(2020, Month.may, 31);
assert(d.year == 2020);
assert(d.quarter == Quarter.q2);
assert(d.month == Month.may);
assert(d.day == 31);

Meta