| 1525 | // csv.cpp |
| 1526 | 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); |
| 1527 | extern "C" SEXP _arrow_csv___WriteCSV__Table(SEXP table_sexp, SEXP write_options_sexp, SEXP stream_sexp){ |
| 1528 | BEGIN_CPP11 |
| 1529 | arrow::r::Input<const std::shared_ptr<arrow::Table>&>::type table(table_sexp); |
| 1530 | arrow::r::Input<const std::shared_ptr<arrow::csv::WriteOptions>&>::type write_options(write_options_sexp); |
| 1531 | arrow::r::Input<const std::shared_ptr<arrow::io::OutputStream>&>::type stream(stream_sexp); |
| 1532 | csv___WriteCSV__Table(table, write_options, stream); |
| 1533 | return R_NilValue; |
| 1534 | END_CPP11 |
| 1535 | } |
| 1536 | // csv.cpp |
| 1537 | 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); |
| 1538 | 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