Function getDaysInMonth [src]
Get the number of days in the given month and year
Prototype
pub fn getDaysInMonth(year: Year, month: Month) u5
Parameters
year: Year
month: Month
Source
pub fn getDaysInMonth(year: Year, month: Month) u5 {
return switch (month) {
.jan => 31,
.feb => @as(u5, switch (isLeapYear(year)) {
true => 29,
false => 28,
}),
.mar => 31,
.apr => 30,
.may => 31,
.jun => 30,
.jul => 31,
.aug => 31,
.sep => 30,
.oct => 31,
.nov => 30,
.dec => 31,
};
}