| 1451 | // csv.cpp |
| 1452 | SEXP csv___ReadOptions__use_threads(const std::shared_ptr<arrow::csv::ReadOptions>& options); |
| 1453 | extern "C" SEXP _arrow_csv___ReadOptions__use_threads(SEXP options_sexp){ |
| 1454 | BEGIN_CPP11 |
| 1455 | arrow::r::Input<const std::shared_ptr<arrow::csv::ReadOptions>&>::type options(options_sexp); |
| 1456 | return cpp11::as_sexp(csv___ReadOptions__use_threads(options)); |
| 1457 | END_CPP11 |
| 1458 | } |
| 1459 | // csv.cpp |
| 1460 | SEXP csv___ReadOptions__skip_rows_after_names(const std::shared_ptr<arrow::csv::ReadOptions>& options); |
| 1461 | extern "C" SEXP _arrow_csv___ReadOptions__skip_rows_after_names(SEXP options_sexp){ |
nothing calls this directly
no test coverage detected