| 1516 | // csv.cpp |
| 1517 | void csv___WriteCSV__Table(const std::shared_ptr<arrow::Table>& table, const std::shared_ptr<arrow::csv::WriteOptions>& write_options, const std::shared_ptr<arrow::io::OutputStream>& stream); |
| 1518 | extern "C" SEXP _arrow_csv___WriteCSV__Table(SEXP table_sexp, SEXP write_options_sexp, SEXP stream_sexp){ |
| 1519 | BEGIN_CPP11 |
| 1520 | arrow::r::Input<const std::shared_ptr<arrow::Table>&>::type table(table_sexp); |
| 1521 | arrow::r::Input<const std::shared_ptr<arrow::csv::WriteOptions>&>::type write_options(write_options_sexp); |
| 1522 | arrow::r::Input<const std::shared_ptr<arrow::io::OutputStream>&>::type stream(stream_sexp); |
| 1523 | csv___WriteCSV__Table(table, write_options, stream); |
| 1524 | return R_NilValue; |
| 1525 | END_CPP11 |
| 1526 | } |
| 1527 | // csv.cpp |
| 1528 | void csv___WriteCSV__RecordBatch(const std::shared_ptr<arrow::RecordBatch>& record_batch, const std::shared_ptr<arrow::csv::WriteOptions>& write_options, const std::shared_ptr<arrow::io::OutputStream>& stream); |
| 1529 | extern "C" SEXP _arrow_csv___WriteCSV__RecordBatch(SEXP record_batch_sexp, SEXP write_options_sexp, SEXP stream_sexp){ |
nothing calls this directly
no test coverage detected