| 5414 | // schema.cpp |
| 5415 | std::shared_ptr<arrow::Schema> arrow__UnifySchemas(const std::vector<std::shared_ptr<arrow::Schema>>& schemas); |
| 5416 | extern "C" SEXP _arrow_arrow__UnifySchemas(SEXP schemas_sexp){ |
| 5417 | BEGIN_CPP11 |
| 5418 | arrow::r::Input<const std::vector<std::shared_ptr<arrow::Schema>>&>::type schemas(schemas_sexp); |
| 5419 | return cpp11::as_sexp(arrow__UnifySchemas(schemas)); |
| 5420 | END_CPP11 |
| 5421 | } |
| 5422 | // table.cpp |
| 5423 | int Table__num_columns(const std::shared_ptr<arrow::Table>& x); |
| 5424 | extern "C" SEXP _arrow_Table__num_columns(SEXP x_sexp){ |
nothing calls this directly
no test coverage detected