-
Notifications
You must be signed in to change notification settings - Fork 562
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
Add elapsed_years
to Date
and DateTime
#557
Conversation
It seems like this would work better as a method on |
I need to use a date here, because years are not constant. A year is on average equals to 52.1428571 weeks so this will be really less accurate on |
Co-authored-by: Cecile Tonglet <cecile.tonglet@cecton.com>
Co-authored-by: Cecile Tonglet <cecile.tonglet@cecton.com>
Co-authored-by: Cecile Tonglet <cecile.tonglet@cecton.com>
Thanks @cecton for the spell checking :D |
I don't know what i do with this PR btw 🤔 |
I think if you make it a method like Brandon said, this PR could get some work done on it and possibly get merged. |
It can't be a method of duration because the exact date must be known. |
☝️ |
Woops didn't see |
Thanks for the merge! ...though it doesn't seem the maintainer is interested in this API feature. |
Ah cool then 🤗 That PR was staling for a while now. I understood it as a "no". I'm afraid you failed the conflict resolution. I added a suggestion to fix it (it's not my PR, I don't think I can push on it) |
Co-authored-by: Cecile Tonglet <cecile.tonglet@cecton.com>
Co-authored-by: Cecile Tonglet <cecile.tonglet@cecton.com>
This PR sadly can't be merged until the tests are fixed, and it looks like some outdated methods are being used. Not sure though. |
Thanks @cecton and @Milo123459 |
@Milo123459 this seems ready now 🚀 |
I fix a conflict in CHANGELOG.md and i think i resolved the issues with |
@Milo123459 Can we give it another shot before new changes ? |
So, this seems to be blocked again and I'm not sure why. What needs to be done to move forward? This feature cannot be made on Duration because the exact date needs to be known to calculate the number of years exactly. Otherwise it would be an estimation of the numbers of years. My code here gives the exact number of years. Do we want this feature or we don't want this feature? I would prefer to get a clear answer if possible. |
CHANGELOG.md
Outdated
@@ -744,4 +745,3 @@ and replaced by 0.2.25 very shortly. Duh.) | |||
## 0.1.0 (2014-11-20) | |||
|
|||
The initial version that was available to `crates.io`. | |||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please remove this useless change
src/date.rs
Outdated
@@ -275,6 +276,20 @@ impl<Tz: TimeZone> Date<Tz> { | |||
pub fn naive_local(&self) -> NaiveDate { | |||
self.date | |||
} | |||
|
|||
/// Retrieve the elapsed years from now to the given [`Date`]. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
consistency with other's function docs
/// Retrieve the elapsed years from now to the given [`Date`]. | |
/// Retrieves the elapsed years from now to the given [`Date`]. |
Unfortunately |
Sorry, can you rebase this again to pull in the fixes from #706? |
Thanks for contributing to chrono!
about adding the PR number)
we can't reintroduce it?
Related to #416
I have make this PR for retrieve easily an age from a birthdate
The API is similar to
std::time::Instant