| 452 | // array_to_vector.cpp |
| 453 | cpp11::writable::list Table__to_dataframe(const std::shared_ptr<arrow::Table>& table, bool use_threads); |
| 454 | extern "C" SEXP _arrow_Table__to_dataframe(SEXP table_sexp, SEXP use_threads_sexp){ |
| 455 | BEGIN_CPP11 |
| 456 | arrow::r::Input<const std::shared_ptr<arrow::Table>&>::type table(table_sexp); |
| 457 | arrow::r::Input<bool>::type use_threads(use_threads_sexp); |
| 458 | return cpp11::as_sexp(Table__to_dataframe(table, use_threads)); |
| 459 | END_CPP11 |
| 460 | } |
| 461 | // arraydata.cpp |
| 462 | std::shared_ptr<arrow::DataType> ArrayData__get_type(const std::shared_ptr<arrow::ArrayData>& x); |
| 463 | extern "C" SEXP _arrow_ArrayData__get_type(SEXP x_sexp){ |
nothing calls this directly
no test coverage detected