#![doc(hidden)]
#![allow(missing_debug_implementations, missing_copy_implementations)]
use crate::{days_in_year, is_leap_year, Weekday};
pub struct Time;
impl Time {
pub const fn from_hms_nanos_unchecked(
hour: u8,
minute: u8,
second: u8,
nanosecond: u32,
) -> crate::Time {
crate::Time {
hour,
minute,
second,
nanosecond,
}
}
}
pub struct Date;
impl Date {
pub const fn from_yo_unchecked(year: i32, ordinal: u16) -> crate::Date {
crate::Date {
value: (year << 9) | ordinal as i32,
}
}
pub(crate) const fn from_ymd_unchecked(year: i32, month: u8, day: u8) -> crate::Date {
const DAYS_CUMULATIVE_COMMON_LEAP: [[u16; 12]; 2] = [
[0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334],
[0, 31, 60, 91, 121, 152, 182, 213, 244, 274, 305, 335],
];
Date::from_yo_unchecked(
year,
DAYS_CUMULATIVE_COMMON_LEAP[is_leap_year(year) as usize][month as usize - 1]
+ day as u16,
)
}
pub(crate) fn from_iso_ywd_unchecked(year: i32, week: u8, weekday: Weekday) -> crate::Date {
let ordinal = week as u16 * 7 + weekday.iso_weekday_number() as u16
- (Self::from_yo_unchecked(year, 4)
.weekday()
.iso_weekday_number() as u16
+ 3);
if ordinal < 1 {
return Self::from_yo_unchecked(year - 1, ordinal + days_in_year(year - 1));
}
let days_in_cur_year = days_in_year(year);
if ordinal > days_in_cur_year {
Self::from_yo_unchecked(year + 1, ordinal - days_in_cur_year)
} else {
Self::from_yo_unchecked(year, ordinal)
}
}
}