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
any_of()
all_of()
The description for tidyselect::one_of() in ver 1.0.0 states:
tidyselect::one_of()
one_of() is retired in favour of the more precise any_of() and all_of() selectors.
So I was a bit surprised to find that these functions are not being exported in select-helpers.R like the other functions are.
select-helpers.R
This seems to only be a problem in package development, where trying to use dplyr::any_of() fails (because it isn't exported like one_of() is).
dplyr::any_of()
one_of()
The text was updated successfully, but these errors were encountered:
e6a83dc
No branches or pull requests
The description for
tidyselect::one_of()
in ver 1.0.0 states:So I was a bit surprised to find that these functions are not being exported in
select-helpers.R
like the other functions are.This seems to only be a problem in package development, where trying to use
dplyr::any_of()
fails (because it isn't exported likeone_of()
is).The text was updated successfully, but these errors were encountered: