Path: blob/main/crates/polars-time/src/windows/calendar.rs
6939 views
pub(crate) const DAYS_PER_MONTH: [[i64; 12]; 2] = [1//J F M A M J J A S O N D2[31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31], // non-leap year3[31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31], // leap year4];56pub(crate) const fn is_leap_year(year: i32) -> bool {7year % 4 == 0 && (year % 100 != 0 || year % 400 == 0)8}910/// Get the number of days in the given month of the given year11pub(crate) const fn days_in_month(year: i32, month: u8) -> u8 {12DAYS_PER_MONTH[is_leap_year(year) as usize][(month - 1) as usize] as u813}1415/// nanoseconds per unit16pub const NS_MICROSECOND: i64 = 1_000;17pub const NS_MILLISECOND: i64 = 1_000_000;18pub const NS_SECOND: i64 = 1_000_000_000;19pub const NS_MINUTE: i64 = 60 * NS_SECOND;20pub const NS_HOUR: i64 = 60 * NS_MINUTE;21pub const NS_DAY: i64 = 24 * NS_HOUR;22pub const NS_WEEK: i64 = 7 * NS_DAY;232425