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

Function _arrow_csv___WriteCSV__Table

r/src/arrowExports.cpp:1527–1535  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1525// csv.cpp
1526void 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);
1527extern "C" SEXP _arrow_csv___WriteCSV__Table(SEXP table_sexp, SEXP write_options_sexp, SEXP stream_sexp){
1528BEGIN_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;
1534END_CPP11
1535}
1536// csv.cpp
1537void 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);
1538extern "C" SEXP _arrow_csv___WriteCSV__RecordBatch(SEXP record_batch_sexp, SEXP write_options_sexp, SEXP stream_sexp){

Callers

nothing calls this directly

Calls 1

csv___WriteCSV__TableFunction · 0.85

Tested by

no test coverage detected