| 443 | // array_to_vector.cpp |
| 444 | cpp11::writable::list RecordBatch__to_dataframe(const std::shared_ptr<arrow::RecordBatch>& batch, bool use_threads); |
| 445 | extern "C" SEXP _arrow_RecordBatch__to_dataframe(SEXP batch_sexp, SEXP use_threads_sexp){ |
| 446 | BEGIN_CPP11 |
| 447 | arrow::r::Input<const std::shared_ptr<arrow::RecordBatch>&>::type batch(batch_sexp); |
| 448 | arrow::r::Input<bool>::type use_threads(use_threads_sexp); |
| 449 | return cpp11::as_sexp(RecordBatch__to_dataframe(batch, use_threads)); |
| 450 | END_CPP11 |
| 451 | } |
| 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){ |
nothing calls this directly
no test coverage detected