-
Notifications
You must be signed in to change notification settings - Fork 25
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 generic operations for hms
#120
base: main
Are you sure you want to change the base?
Conversation
NTS: Should also check this plays nicely with {lubridate} et al. |
Thanks. The existing tests currently fail? |
Yes, the arith-tests regarding POSIX times. |
NB We produce this message:
|
R 3.6 and R 4.0 seem to behave differently. @krlmlr do you have an idea what was changed from 4.0 to 4.1? Create backward-compatible behavior in the old versions (likely by branching in |
I don't mind waiting until R 4.0 is phased out, or at least supporting this feature only for that version. I plan to return to this package some time later in this year and can only offer very superficial advice in the meantime. |
Wow, what a weird failure.
The incompatibility warning will not be fixable in R < 4.1 because this fix is needed in eval.c: Seems like I have to add a working implementation for old R versions, too. |
I'm failing to reproduce the failure on 4.0.4 @ windows. |
Opening this draft for early feedback.
Missinng POSIXct and POSIXlt currently.
One warning condition (difftime - Date) can't be reproduced exactly using the current implementation.
Let me know if that is a problem, because it seems hard to work around - the compatibility warning will be silenced for good by
-.Date <- Ops.hms
and this constellation is one where the C++ code regardingdifftime
has no manual disambiguation, firing the warning.Fixes #119
Fixes #18