Paul Dicker

Results 343 comments of Paul Dicker

That would be cool to have, but it is more a dependency graph than a tree.

I'll add a :sun_with_face: after items when I think they are ready to convert without deep dependencies.

@Zomtir What would you like to work on next, if any? Then I'll stay clear.

Thank you for everything until now :+1:.

This issue is for the next major version of chrono, 0.5. All deprecated methods are removed, and the `_opt` and `try_` methods are renamed. @ISibboI In this case you may...

Sorry, I was on mobile and just saw this part of your comment: > Also, please have the `Err` value include the erroneous input value for the `try_...` functions. Otherwise,...

Great! Honestly we are currently out of methods that are ready to convert. Converting the parsing methods depends on #1511, and the first preparations towards converting the methods that depend...

So most methods on `TimeDelta` are converted for that reason. `checked_add` and `checked_sub` only fail on overflow. I have no strong opinion, but keeping a similar signature to the corresponding...

Do you mean `nanos as i32`? The result of `value % NANOS_PER_SEC` should always be less than `NANOS_PER_SEC`.

> My bad, `nanos` are covered. `let secs = self.secs * rhs` could be `(2^63)*(2^31)` potentially? Not that it will remotely matter, just asking if this intended. Good point! `self.secs`...