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

Function _arrow_ipc___WriteFeather__Table

r/src/arrowExports.cpp:3150–3161  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3148// feather.cpp
3149void ipc___WriteFeather__Table(const std::shared_ptr<arrow::io::OutputStream>& stream, const std::shared_ptr<arrow::Table>& table, int version, int chunk_size, arrow::Compression::type compression, int compression_level);
3150extern "C" SEXP _arrow_ipc___WriteFeather__Table(SEXP stream_sexp, SEXP table_sexp, SEXP version_sexp, SEXP chunk_size_sexp, SEXP compression_sexp, SEXP compression_level_sexp){
3151BEGIN_CPP11
3152 arrow::r::Input<const std::shared_ptr<arrow::io::OutputStream>&>::type stream(stream_sexp);
3153 arrow::r::Input<const std::shared_ptr<arrow::Table>&>::type table(table_sexp);
3154 arrow::r::Input<int>::type version(version_sexp);
3155 arrow::r::Input<int>::type chunk_size(chunk_size_sexp);
3156 arrow::r::Input<arrow::Compression::type>::type compression(compression_sexp);
3157 arrow::r::Input<int>::type compression_level(compression_level_sexp);
3158 ipc___WriteFeather__Table(stream, table, version, chunk_size, compression, compression_level);
3159 return R_NilValue;
3160END_CPP11
3161}
3162// feather.cpp
3163int ipc___feather___Reader__version(const std::shared_ptr<arrow::ipc::feather::Reader>& reader);
3164extern "C" SEXP _arrow_ipc___feather___Reader__version(SEXP reader_sexp){

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected