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 @ be treated specially, like $ and ::?
@
$
::
Also should foo %>% "bar" work, like "bar"(foo) and foo %>% "bar"() do?
foo %>% "bar"
"bar"(foo)
foo %>% "bar"()
The text was updated successfully, but these errors were encountered:
Yes, @ should be treated like $ and [[.
[[
I don't think we should make it an alias to pluck(); it's already easy enough to use that if you want.
pluck()
Sorry, something went wrong.
No branches or pull requests
Should
@
be treated specially, like$
and::
?Also should
foo %>% "bar"
work, like"bar"(foo)
andfoo %>% "bar"()
do?The text was updated successfully, but these errors were encountered: