The OpenD Programming Language

endOfMonth

Date for the last day in the month that this Date is in.

@safe pure @nogc @property const @safe pure nothrow @nogc
Date
endOfMonth
()

Examples

assert(Date(1999, 1, 6).endOfMonth == Date(1999, 1, 31));
assert(Date(1999, 2, 7).endOfMonth == Date(1999, 2, 28));
assert(Date(2000, 2, 7).endOfMonth == Date(2000, 2, 29));
assert(Date(2000, 6, 4).endOfMonth == Date(2000, 6, 30));

Meta