| 5371 | // schema.cpp |
| 5372 | std::shared_ptr<arrow::Schema> arrow__UnifySchemas(const std::vector<std::shared_ptr<arrow::Schema>>& schemas); |
| 5373 | extern "C" SEXP _arrow_arrow__UnifySchemas(SEXP schemas_sexp){ |
| 5374 | BEGIN_CPP11 |
| 5375 | arrow::r::Input<const std::vector<std::shared_ptr<arrow::Schema>>&>::type schemas(schemas_sexp); |
| 5376 | return cpp11::as_sexp(arrow__UnifySchemas(schemas)); |
| 5377 | END_CPP11 |
| 5378 | } |
| 5379 | // table.cpp |
| 5380 | int Table__num_columns(const std::shared_ptr<arrow::Table>& x); |
| 5381 | extern "C" SEXP _arrow_Table__num_columns(SEXP x_sexp){ |
nothing calls this directly
no test coverage detected