Skip to content
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

interoperability between difftime and Duration objects #323

Closed
andreas50 opened this issue May 13, 2015 · 1 comment
Closed

interoperability between difftime and Duration objects #323

andreas50 opened this issue May 13, 2015 · 1 comment
Labels
bug an unexpected problem or unintended behavior

Comments

@andreas50
Copy link

I noticed some inconsistent date arithmetic behavior:

t1 <- Sys.time()
t2 <- t1 + dhours(1)
(t2 - t1) / dseconds(60) > 1    # TRUE
(t2 - t1) > dseconds(60)        # FALSE, but ought to be TRUE or at least give an error
@vspinu
Copy link
Member

vspinu commented May 13, 2015

That's a bug indeed. A workaround for now is to wrap it into as.duration

as.duration(t2 - t1) > dseconds(60)

@vspinu vspinu added the bug an unexpected problem or unintended behavior label May 13, 2015
@vspinu vspinu closed this as completed in e9f1c4c May 13, 2015
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug an unexpected problem or unintended behavior
Projects
None yet
Development

No branches or pull requests

2 participants