| 3148 | // feather.cpp |
| 3149 | void 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); |
| 3150 | extern "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){ |
| 3151 | BEGIN_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; |
| 3160 | END_CPP11 |
| 3161 | } |
| 3162 | // feather.cpp |
| 3163 | int ipc___feather___Reader__version(const std::shared_ptr<arrow::ipc::feather::Reader>& reader); |
| 3164 | extern "C" SEXP _arrow_ipc___feather___Reader__version(SEXP reader_sexp){ |
nothing calls this directly
no test coverage detected