-
Notifications
You must be signed in to change notification settings - Fork 593
Make functions in internals const #1043
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -241,19 +241,35 @@ impl NaiveDate { | |
pub(crate) fn weeks_from(&self, day: Weekday) -> i32 { | ||
(self.ordinal() as i32 - self.weekday().num_days_from(day) as i32 + 6) / 7 | ||
} | ||
/// Makes a new `NaiveDate` from year and packed ordinal-flags, with a verification. | ||
fn from_of(year: i32, of: Of) -> Option<NaiveDate> { | ||
if (MIN_YEAR..=MAX_YEAR).contains(&year) && of.valid() { | ||
let Of(of) = of; | ||
Some(NaiveDate { ymdf: (year << 13) | (of as DateImpl) }) | ||
} else { | ||
None | ||
|
||
/// Makes a new `NaiveDate` from year, ordinal and flags. | ||
/// Does not check whether the flags are correct for the provided year. | ||
const fn from_ordinal_and_flags( | ||
year: i32, | ||
ordinal: u32, | ||
flags: YearFlags, | ||
) -> Option<NaiveDate> { | ||
if year < MIN_YEAR || year > MAX_YEAR { | ||
return None; // Out-of-range | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This already splits out the failure causes for when this method is switched to return a |
||
} | ||
// Enable debug check once the MSRV >= 1.57 (panicking in const feature) | ||
// debug_assert!(YearFlags::from_year(year).0 == flags.0); | ||
match Of::new(ordinal, flags) { | ||
Some(of) => Some(NaiveDate { ymdf: (year << 13) | (of.inner() as DateImpl) }), | ||
None => None, // Invalid: Ordinal outside of the nr of days in a year with those flags. | ||
} | ||
} | ||
|
||
/// Makes a new `NaiveDate` from year and packed month-day-flags, with a verification. | ||
fn from_mdf(year: i32, mdf: Mdf) -> Option<NaiveDate> { | ||
NaiveDate::from_of(year, mdf.to_of()) | ||
/// Makes a new `NaiveDate` from year and packed month-day-flags. | ||
/// Does not check whether the flags are correct for the provided year. | ||
const fn from_mdf(year: i32, mdf: Mdf) -> Option<NaiveDate> { | ||
if year < MIN_YEAR || year > MAX_YEAR { | ||
return None; // Out-of-range | ||
} | ||
match mdf.to_of() { | ||
Some(of) => Some(NaiveDate { ymdf: (year << 13) | (of.inner() as DateImpl) }), | ||
None => None, // Non-existing date | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This should return another error than in |
||
} | ||
} | ||
|
||
/// Makes a new `NaiveDate` from the [calendar date](#calendar-date) | ||
|
@@ -324,7 +340,7 @@ impl NaiveDate { | |
#[must_use] | ||
pub fn from_yo_opt(year: i32, ordinal: u32) -> Option<NaiveDate> { | ||
let flags = YearFlags::from_year(year); | ||
NaiveDate::from_of(year, Of::new(ordinal, flags)?) | ||
NaiveDate::from_ordinal_and_flags(year, ordinal, flags) | ||
} | ||
|
||
/// Makes a new `NaiveDate` from the [ISO week date](#week-date) | ||
|
@@ -393,20 +409,21 @@ impl NaiveDate { | |
if weekord <= delta { | ||
// ordinal < 1, previous year | ||
let prevflags = YearFlags::from_year(year - 1); | ||
NaiveDate::from_of( | ||
NaiveDate::from_ordinal_and_flags( | ||
year - 1, | ||
Of::new(weekord + prevflags.ndays() - delta, prevflags)?, | ||
weekord + prevflags.ndays() - delta, | ||
prevflags, | ||
) | ||
} else { | ||
let ordinal = weekord - delta; | ||
let ndays = flags.ndays(); | ||
if ordinal <= ndays { | ||
// this year | ||
NaiveDate::from_of(year, Of::new(ordinal, flags)?) | ||
NaiveDate::from_ordinal_and_flags(year, ordinal, flags) | ||
} else { | ||
// ordinal > ndays, next year | ||
let nextflags = YearFlags::from_year(year + 1); | ||
NaiveDate::from_of(year + 1, Of::new(ordinal - ndays, nextflags)?) | ||
NaiveDate::from_ordinal_and_flags(year + 1, ordinal - ndays, nextflags) | ||
} | ||
} | ||
} else { | ||
|
@@ -451,7 +468,7 @@ impl NaiveDate { | |
let (year_div_400, cycle) = div_mod_floor(days, 146_097); | ||
let (year_mod_400, ordinal) = internals::cycle_to_yo(cycle as u32); | ||
let flags = YearFlags::from_year_mod_400(year_mod_400 as i32); | ||
NaiveDate::from_of(year_div_400 * 400 + year_mod_400 as i32, Of::new(ordinal, flags)?) | ||
NaiveDate::from_ordinal_and_flags(year_div_400 * 400 + year_mod_400 as i32, ordinal, flags) | ||
} | ||
|
||
/// Makes a new `NaiveDate` by counting the number of occurrences of a particular day-of-week | ||
|
@@ -924,28 +941,24 @@ impl NaiveDate { | |
/// Returns the packed ordinal-flags. | ||
#[inline] | ||
const fn of(&self) -> Of { | ||
Of((self.ymdf & 0b1_1111_1111_1111) as u32) | ||
Of::from_date_impl(self.ymdf) | ||
} | ||
|
||
/// Makes a new `NaiveDate` with the packed month-day-flags changed. | ||
/// | ||
/// Returns `None` when the resulting `NaiveDate` would be invalid. | ||
#[inline] | ||
fn with_mdf(&self, mdf: Mdf) -> Option<NaiveDate> { | ||
self.with_of(mdf.to_of()) | ||
Some(self.with_of(mdf.to_of()?)) | ||
} | ||
|
||
/// Makes a new `NaiveDate` with the packed ordinal-flags changed. | ||
/// | ||
/// Returns `None` when the resulting `NaiveDate` would be invalid. | ||
/// Does not check if the year flags match the year. | ||
#[inline] | ||
fn with_of(&self, of: Of) -> Option<NaiveDate> { | ||
if of.valid() { | ||
let Of(of) = of; | ||
Some(NaiveDate { ymdf: (self.ymdf & !0b1_1111_1111_1111) | of as DateImpl }) | ||
} else { | ||
None | ||
} | ||
const fn with_of(&self, of: Of) -> NaiveDate { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Because an |
||
NaiveDate { ymdf: (self.ymdf & !0b1_1111_1111_1111) | of.inner() as DateImpl } | ||
} | ||
|
||
/// Makes a new `NaiveDate` for the next calendar date. | ||
|
@@ -974,7 +987,10 @@ impl NaiveDate { | |
#[inline] | ||
#[must_use] | ||
pub fn succ_opt(&self) -> Option<NaiveDate> { | ||
self.with_of(self.of().succ()).or_else(|| NaiveDate::from_ymd_opt(self.year() + 1, 1, 1)) | ||
match self.of().succ() { | ||
Some(of) => Some(self.with_of(of)), | ||
None => NaiveDate::from_ymd_opt(self.year() + 1, 1, 1), | ||
pitdicker marked this conversation as resolved.
Show resolved
Hide resolved
|
||
} | ||
} | ||
|
||
/// Makes a new `NaiveDate` for the previous calendar date. | ||
|
@@ -1003,7 +1019,10 @@ impl NaiveDate { | |
#[inline] | ||
#[must_use] | ||
pub fn pred_opt(&self) -> Option<NaiveDate> { | ||
self.with_of(self.of().pred()).or_else(|| NaiveDate::from_ymd_opt(self.year() - 1, 12, 31)) | ||
match self.of().pred() { | ||
Some(of) => Some(self.with_of(of)), | ||
None => NaiveDate::from_ymd_opt(self.year() - 1, 12, 31), | ||
pitdicker marked this conversation as resolved.
Show resolved
Hide resolved
|
||
} | ||
} | ||
|
||
/// Adds the `days` part of given `Duration` to the current date. | ||
|
@@ -1035,7 +1054,7 @@ impl NaiveDate { | |
|
||
let (year_mod_400, ordinal) = internals::cycle_to_yo(cycle as u32); | ||
let flags = YearFlags::from_year_mod_400(year_mod_400 as i32); | ||
NaiveDate::from_of(year_div_400 * 400 + year_mod_400 as i32, Of::new(ordinal, flags)?) | ||
NaiveDate::from_ordinal_and_flags(year_div_400 * 400 + year_mod_400 as i32, ordinal, flags) | ||
} | ||
|
||
/// Subtracts the `days` part of given `Duration` from the current date. | ||
|
@@ -1067,7 +1086,7 @@ impl NaiveDate { | |
|
||
let (year_mod_400, ordinal) = internals::cycle_to_yo(cycle as u32); | ||
let flags = YearFlags::from_year_mod_400(year_mod_400 as i32); | ||
NaiveDate::from_of(year_div_400 * 400 + year_mod_400 as i32, Of::new(ordinal, flags)?) | ||
NaiveDate::from_ordinal_and_flags(year_div_400 * 400 + year_mod_400 as i32, ordinal, flags) | ||
} | ||
|
||
/// Subtracts another `NaiveDate` from the current date. | ||
|
@@ -1622,7 +1641,7 @@ impl Datelike for NaiveDate { | |
/// ``` | ||
#[inline] | ||
fn with_ordinal(&self, ordinal: u32) -> Option<NaiveDate> { | ||
self.with_of(self.of().with_ordinal(ordinal)?) | ||
self.of().with_ordinal(ordinal).map(|of| self.with_of(of)) | ||
} | ||
|
||
/// Makes a new `NaiveDate` with the day of year (starting from 0) changed. | ||
|
@@ -1647,7 +1666,7 @@ impl Datelike for NaiveDate { | |
#[inline] | ||
fn with_ordinal0(&self, ordinal0: u32) -> Option<NaiveDate> { | ||
let ordinal = ordinal0.checked_add(1)?; | ||
self.with_of(self.of().with_ordinal(ordinal)?) | ||
self.with_ordinal(ordinal) | ||
} | ||
} | ||
|
||
|
Uh oh!
There was an error while loading. Please reload this page.