| 646 | } |
| 647 | |
| 648 | int64_t daysBeforeMonthFirstDay(int32_t year, int32_t month) { |
| 649 | return isLeapYear(year) ? kCumulativeLeapDays[month - 1] |
| 650 | : kCumulativeDays[month - 1]; |
| 651 | } |
| 652 | |
| 653 | int64_t daysSinceEpochFromDate( |
| 654 | int32_t year, |
no test coverage detected