Antoine Fabri

Results 157 comments of Antoine Fabri

Maybe this idiom looks better, no replacement functions : ``` data.frame( a = 1:2, c = 5:6 ) |> within({ b

This `select =` is interesting, it's a bit like tidy selection, we can could compress things using `col1:col2` or `-col1`, but that's a lot of work for corner cases unless...

moved since now default behavior doesn't trigger this

`construct_reprex()` has been implemented differently so this draft is obsolete for this part. However we have here some work on `construct_session()` that we might catch up to at some point

We have construct_dump() already

{woof} might help but maybe a bit slow ? It could probably be made faster though since it's essentially parsing. https://github.com/moodymudskipper/woof

You'd have the same issue if you nest `bquote()` calls, the `.()` are substituted by the outside calls, similar if you nest `substitute()` calls. You can use the following trick:...

It's not a typed issue but more of a precedence issue, `?` has lower precedence than everything, and a `?` in a non braced function definition just ends the function...