| 4731 | // r_to_arrow.cpp |
| 4732 | std::shared_ptr<arrow::Table> Table__from_dots(SEXP lst, SEXP schema_sxp, bool use_threads); |
| 4733 | extern "C" SEXP _arrow_Table__from_dots(SEXP lst_sexp, SEXP schema_sxp_sexp, SEXP use_threads_sexp){ |
| 4734 | BEGIN_CPP11 |
| 4735 | arrow::r::Input<SEXP>::type lst(lst_sexp); |
| 4736 | arrow::r::Input<SEXP>::type schema_sxp(schema_sxp_sexp); |
| 4737 | arrow::r::Input<bool>::type use_threads(use_threads_sexp); |
| 4738 | return cpp11::as_sexp(Table__from_dots(lst, schema_sxp, use_threads)); |
| 4739 | END_CPP11 |
| 4740 | } |
| 4741 | // r_to_arrow.cpp |
| 4742 | SEXP vec_to_Array(SEXP x, SEXP s_type); |
| 4743 | extern "C" SEXP _arrow_vec_to_Array(SEXP x_sexp, SEXP s_type_sexp){ |
nothing calls this directly
no test coverage detected