| 1547 | // csv.cpp |
| 1548 | void csv___WriteCSV__RecordBatchReader(const std::shared_ptr<arrow::RecordBatchReader>& reader, const std::shared_ptr<arrow::csv::WriteOptions>& write_options, const std::shared_ptr<arrow::io::OutputStream>& stream); |
| 1549 | extern "C" SEXP _arrow_csv___WriteCSV__RecordBatchReader(SEXP reader_sexp, SEXP write_options_sexp, SEXP stream_sexp){ |
| 1550 | BEGIN_CPP11 |
| 1551 | arrow::r::Input<const std::shared_ptr<arrow::RecordBatchReader>&>::type reader(reader_sexp); |
| 1552 | arrow::r::Input<const std::shared_ptr<arrow::csv::WriteOptions>&>::type write_options(write_options_sexp); |
| 1553 | arrow::r::Input<const std::shared_ptr<arrow::io::OutputStream>&>::type stream(stream_sexp); |
| 1554 | csv___WriteCSV__RecordBatchReader(reader, write_options, stream); |
| 1555 | return R_NilValue; |
| 1556 | END_CPP11 |
| 1557 | } |
| 1558 | // dataset.cpp |
| 1559 | #if defined(ARROW_R_WITH_DATASET) |
| 1560 | std::shared_ptr<ds::ScannerBuilder> dataset___Dataset__NewScan(const std::shared_ptr<ds::Dataset>& ds); |
nothing calls this directly
no test coverage detected