Syntax ideas: ```R df %>% with_groups(mutate, this, that)(foo = 1) df %>% with_groups(c(this, that), mutate, foo = 1) ```
Activity
romainfrancois commentedon Jan 8, 2020
I think I prefer the second one. I suppose we could make it compatible to this as well:
hadley commentedon Jan 8, 2020
Ah yes, nice! And that actual solves a tidy-eval challenge I was having
Implement with_groups()
Minimise regrouping work (#4751)