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
Should this fail?
vctrs::vec_as_location(NA, 3, missing = "error") #> [1] NA NA NA
Created on 2021-07-30 by the reprex package (v2.0.0.9000)
The text was updated successfully, but these errors were encountered:
Hmm, probably. That would mean this should fail too:
vctrs::vec_as_location(NA_character_, 2, missing = "error", names = c("x", "y")) #> [1] NA
lgl_as_location() and chr_as_location() don't check missing right now:
lgl_as_location()
chr_as_location()
missing
vctrs/src/subscript-loc.c
Line 219 in 81e3247
Line 278 in 81e3247
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Should this fail?
Created on 2021-07-30 by the reprex package (v2.0.0.9000)
The text was updated successfully, but these errors were encountered: