-
Notifications
You must be signed in to change notification settings - Fork 161
Closed
Labels
featurea feature request or enhancementa feature request or enhancement
Description
!!!.
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"
huftis
Metadata
Metadata
Assignees
Labels
featurea feature request or enhancementa feature request or enhancement