| 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){ |
| 4744 | BEGIN_CPP11 |
| 4745 | arrow::r::Input<SEXP>::type x(x_sexp); |
| 4746 | arrow::r::Input<SEXP>::type s_type(s_type_sexp); |
| 4747 | return cpp11::as_sexp(vec_to_Array(x, s_type)); |
| 4748 | END_CPP11 |
| 4749 | } |
| 4750 | // r_to_arrow.cpp |
| 4751 | std::shared_ptr<arrow::Array> DictionaryArray__FromArrays(const std::shared_ptr<arrow::DataType>& type, const std::shared_ptr<arrow::Array>& indices, const std::shared_ptr<arrow::Array>& dict); |
| 4752 | extern "C" SEXP _arrow_DictionaryArray__FromArrays(SEXP type_sexp, SEXP indices_sexp, SEXP dict_sexp){ |
nothing calls this directly
no test coverage detected