MCPcopy Create free account
hub / github.com/apache/arrow / _arrow_dataset___ScannerBuilder__UseThreads

Function _arrow_dataset___ScannerBuilder__UseThreads

r/src/arrowExports.cpp:2213–2220  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2211#if defined(ARROW_R_WITH_DATASET)
2212void dataset___ScannerBuilder__UseThreads(const std::shared_ptr<ds::ScannerBuilder>& sb, bool threads);
2213extern "C" SEXP _arrow_dataset___ScannerBuilder__UseThreads(SEXP sb_sexp, SEXP threads_sexp){
2214BEGIN_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;
2219END_CPP11
2220}
2221#else
2222extern "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. ");

Callers

nothing calls this directly

Tested by

no test coverage detected