The units of time to validate.
The year of the day to validate.
The month of the day to validate (January is 1).
The day to validate.
assert(valid!"days"(2016, 2, 29)); assert(!valid!"days"(2016, 2, 30)); assert(valid!"days"(2017, 2, 20)); assert(!valid!"days"(2017, 2, 29));
Returns whether the given day is valid for the given year and month.