| 1538 | // csv.cpp |
| 1539 | 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); |
| 1540 | extern "C" SEXP _arrow_csv___WriteCSV__RecordBatchReader(SEXP reader_sexp, SEXP write_options_sexp, SEXP stream_sexp){ |
| 1541 | BEGIN_CPP11 |
| 1542 | arrow::r::Input<const std::shared_ptr<arrow::RecordBatchReader>&>::type reader(reader_sexp); |
| 1543 | arrow::r::Input<const std::shared_ptr<arrow::csv::WriteOptions>&>::type write_options(write_options_sexp); |
| 1544 | arrow::r::Input<const std::shared_ptr<arrow::io::OutputStream>&>::type stream(stream_sexp); |
| 1545 | csv___WriteCSV__RecordBatchReader(reader, write_options, stream); |
| 1546 | return R_NilValue; |
| 1547 | END_CPP11 |
| 1548 | } |
| 1549 | // dataset.cpp |
| 1550 | #if defined(ARROW_R_WITH_DATASET) |
| 1551 | std::shared_ptr<ds::ScannerBuilder> dataset___Dataset__NewScan(const std::shared_ptr<ds::Dataset>& ds); |
nothing calls this directly
no test coverage detected