Davis Vaughan
Davis Vaughan
Function calls where a braced expression is present in the last argument deserves a call out, as it is a special function call style (i.e. not exactly flat or expanded)...
``` Function cpp11::writable::r_vector::r_vector(std::initializer_list)::{lambda()#1}::operator()() const [UP] unprotected variable names while calling allocating function Rf_mkCharCE cpp11/include/cpp11/list.hpp:91 Function cpp11::writable::r_vector::r_vector(std::initializer_list)::{lambda()#1}::operator()() const [UP] unprotected variable names while calling allocating function Rf_mkCharCE cpp11/include/cpp11/r_vector.hpp:890 ``` https://raw.githubusercontent.com/kalibera/cran-checks/master/rchk/results/adfExplorer.out https://raw.githubusercontent.com/kalibera/cran-checks/master/rchk/results/cpp11bigwig.out...
To convert from `std::vector` to `cpp11::strings` you might do `cpp11::strings(as_sexp(x))`. That goes through `as_sexp_strings()` which looks like it could be a little more efficient. Rather than calling `safe[Rf_mkCharCE]` on each...
It is no longer needed since R >=4.0.0 is required by cpp11, but a few people used it internally - [x] https://github.com/apache/arrow/issues/44924 - [x] https://github.com/r-lib/systemfonts/issues/119
For the same reasons as #412. Based on a revdepcheck it looks like textshaping is the only one using this. - [x] https://github.com/r-lib/textshaping/issues/47
It is no longer useful since cpp11 requires R >=4.0.0 and always has ALTREP available, but some groups rely on it. - [ ] https://github.com/apache/arrow/issues/44926
See https://github.com/tidyverse/dplyr/issues/7103
Now that you've got Air set up, I wonder if you'd be willing to try our new github action: https://www.tidyverse.org/blog/2025/06/air-0-7-0/#github-action This one uses github suggestions on prs and is my...
The Console used to build up the code in the Console one line at a time until it gets a complete statement, and then it would execute that entire statement...
Closes #6560 Closes #6891 Part of https://github.com/tidyverse/tidyups/pull/30