| 4688 | // r_to_arrow.cpp |
| 4689 | std::shared_ptr<arrow::Table> Table__from_dots(SEXP lst, SEXP schema_sxp, bool use_threads); |
| 4690 | extern "C" SEXP _arrow_Table__from_dots(SEXP lst_sexp, SEXP schema_sxp_sexp, SEXP use_threads_sexp){ |
| 4691 | BEGIN_CPP11 |
| 4692 | arrow::r::Input<SEXP>::type lst(lst_sexp); |
| 4693 | arrow::r::Input<SEXP>::type schema_sxp(schema_sxp_sexp); |
| 4694 | arrow::r::Input<bool>::type use_threads(use_threads_sexp); |
| 4695 | return cpp11::as_sexp(Table__from_dots(lst, schema_sxp, use_threads)); |
| 4696 | END_CPP11 |
| 4697 | } |
| 4698 | // r_to_arrow.cpp |
| 4699 | SEXP vec_to_Array(SEXP x, SEXP s_type); |
| 4700 | extern "C" SEXP _arrow_vec_to_Array(SEXP x_sexp, SEXP s_type_sexp){ |
nothing calls this directly
no test coverage detected