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

Function _arrow_ipc___WriteFeather__Table

r/src/arrowExports.cpp:3159–3170  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3157// feather.cpp
3158void 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);
3159extern "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){
3160BEGIN_CPP11
3161 arrow::r::Input<const std::shared_ptr<arrow::io::OutputStream>&>::type stream(stream_sexp);
3162 arrow::r::Input<const std::shared_ptr<arrow::Table>&>::type table(table_sexp);
3163 arrow::r::Input<int>::type version(version_sexp);
3164 arrow::r::Input<int>::type chunk_size(chunk_size_sexp);
3165 arrow::r::Input<arrow::Compression::type>::type compression(compression_sexp);
3166 arrow::r::Input<int>::type compression_level(compression_level_sexp);
3167 ipc___WriteFeather__Table(stream, table, version, chunk_size, compression, compression_level);
3168 return R_NilValue;
3169END_CPP11
3170}
3171// feather.cpp
3172int ipc___feather___Reader__version(const std::shared_ptr<arrow::ipc::feather::Reader>& reader);
3173extern "C" SEXP _arrow_ipc___feather___Reader__version(SEXP reader_sexp){

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected