| 3157 | // feather.cpp |
| 3158 | 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); |
| 3159 | 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){ |
| 3160 | BEGIN_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; |
| 3169 | END_CPP11 |
| 3170 | } |
| 3171 | // feather.cpp |
| 3172 | int ipc___feather___Reader__version(const std::shared_ptr<arrow::ipc::feather::Reader>& reader); |
| 3173 | extern "C" SEXP _arrow_ipc___feather___Reader__version(SEXP reader_sexp){ |
nothing calls this directly
no test coverage detected