We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I think both should be identical. Probably there's a similar problem with [[<- . Happy to send a PR.
[[<-
library(vctrs) xx <- new_rcrd(list(x = 1:3, a = list(1, 2:3, 4:6))) field(xx[3], "a") #> [[1]] #> [1] 4 5 6 field(xx[[3]], "a") #> [1] 4 5 6
Created on 2020-08-03 by the reprex package (v0.3.0)
The text was updated successfully, but these errors were encountered:
Fixed by #1224 but I'll add your example as unit test just to be sure it's covered.
Sorry, something went wrong.
de98512
No branches or pull requests
I think both should be identical. Probably there's a similar problem with
[[<-
. Happy to send a PR.Created on 2020-08-03 by the reprex package (v0.3.0)
The text was updated successfully, but these errors were encountered: