Date.month

Month of a Gregorian Year.

  1. Month month [@property getter]
    struct Date
    @property const @safe pure nothrow @nogc
    month
    ()
  2. Month month [@property setter]

Examples

assert(Date(1999, 7, 6).month == 7);
assert(Date(2010, 10, 4).month == 10);
assert(Date(-7, 4, 5).month == 4);
Suggestion Box / Bug Report