| 5574 | // table.cpp |
| 5575 | r_vec_size Table__ReferencedBufferSize(const std::shared_ptr<arrow::Table>& table); |
| 5576 | extern "C" SEXP _arrow_Table__ReferencedBufferSize(SEXP table_sexp){ |
| 5577 | BEGIN_CPP11 |
| 5578 | arrow::r::Input<const std::shared_ptr<arrow::Table>&>::type table(table_sexp); |
| 5579 | return cpp11::as_sexp(Table__ReferencedBufferSize(table)); |
| 5580 | END_CPP11 |
| 5581 | } |
| 5582 | // table.cpp |
| 5583 | std::shared_ptr<arrow::Table> Table__ConcatenateTables(const std::vector<std::shared_ptr<arrow::Table>>& tables, bool unify_schemas); |
| 5584 | extern "C" SEXP _arrow_Table__ConcatenateTables(SEXP tables_sexp, SEXP unify_schemas_sexp){ |
nothing calls this directly
no test coverage detected