| 1427 | // csv.cpp |
| 1428 | SEXP csv___ReadOptions__block_size(const std::shared_ptr<arrow::csv::ReadOptions>& options); |
| 1429 | extern "C" SEXP _arrow_csv___ReadOptions__block_size(SEXP options_sexp){ |
| 1430 | BEGIN_CPP11 |
| 1431 | arrow::r::Input<const std::shared_ptr<arrow::csv::ReadOptions>&>::type options(options_sexp); |
| 1432 | return cpp11::as_sexp(csv___ReadOptions__block_size(options)); |
| 1433 | END_CPP11 |
| 1434 | } |
| 1435 | // csv.cpp |
| 1436 | SEXP csv___ReadOptions__skip_rows(const std::shared_ptr<arrow::csv::ReadOptions>& options); |
| 1437 | extern "C" SEXP _arrow_csv___ReadOptions__skip_rows(SEXP options_sexp){ |
nothing calls this directly
no test coverage detected