| 2211 | #if defined(ARROW_R_WITH_DATASET) |
| 2212 | void dataset___ScannerBuilder__UseThreads(const std::shared_ptr<ds::ScannerBuilder>& sb, bool threads); |
| 2213 | extern "C" SEXP _arrow_dataset___ScannerBuilder__UseThreads(SEXP sb_sexp, SEXP threads_sexp){ |
| 2214 | BEGIN_CPP11 |
| 2215 | arrow::r::Input<const std::shared_ptr<ds::ScannerBuilder>&>::type sb(sb_sexp); |
| 2216 | arrow::r::Input<bool>::type threads(threads_sexp); |
| 2217 | dataset___ScannerBuilder__UseThreads(sb, threads); |
| 2218 | return R_NilValue; |
| 2219 | END_CPP11 |
| 2220 | } |
| 2221 | #else |
| 2222 | extern "C" SEXP _arrow_dataset___ScannerBuilder__UseThreads(SEXP sb_sexp, SEXP threads_sexp){ |
| 2223 | Rf_error("Cannot call dataset___ScannerBuilder__UseThreads(). See https://arrow.apache.org/docs/r/articles/install.html for help installing Arrow C++ libraries. "); |
nothing calls this directly
no test coverage detected