MCPcopy Create free account
hub / github.com/apache/arrow / _arrow_csv___WriteCSV__RecordBatchReader

Function _arrow_csv___WriteCSV__RecordBatchReader

r/src/arrowExports.cpp:1540–1548  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1538// csv.cpp
1539void 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);
1540extern "C" SEXP _arrow_csv___WriteCSV__RecordBatchReader(SEXP reader_sexp, SEXP write_options_sexp, SEXP stream_sexp){
1541BEGIN_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;
1547END_CPP11
1548}
1549// dataset.cpp
1550#if defined(ARROW_R_WITH_DATASET)
1551std::shared_ptr<ds::ScannerBuilder> dataset___Dataset__NewScan(const std::shared_ptr<ds::Dataset>& ds);

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected