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

Splicing the magrittr input #191

Closed
lionel- opened this issue Feb 7, 2019 · 0 comments
Closed

Splicing the magrittr input #191

lionel- opened this issue Feb 7, 2019 · 0 comments
Labels
feature a feature request or enhancement

Comments

@lionel-
Copy link
Member

lionel- commented Feb 7, 2019

!!!. should not be considered as a function call.

Current behaviour:

library("magrittr")

letters[1:3] %>% rlang::list2(!!!.)
#> [[1]]
#> [1] "a" "b" "c"
#>
#> [[2]]
#> [1] "a"
#>
#> [[3]]
#> [1] "b"
#>
#> [[4]]
#> [1] "c"

Expected behaviour:

letters[1:3] %>% rlang::list2(!!!.)
#> [[1]]
#> [1] "a"
#>
#> [[2]]
#> [1] "b"
#>
#> [[3]]
#> [1] "c"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
feature a feature request or enhancement
Projects
None yet
Development

No branches or pull requests

2 participants