Closed markfairbanks closed 2 years ago
This fixes the issue outside of across, but made me realize I didn't handle #288 right, because anonymous functions in across
don't get dplyr verbs translated
lazy_dt(tibble(y = 1)) %>%
mutate(across(y, function(x) x + n()))
Ah for some reason I assumed that across()
.fns
would be using the same dt_squash()
path but looks like it's different.
Might be easier to merge this one and deal with the across()
issue separately. That work for you @eutwt?
Yeah I think that makes sense
Closes #362