| 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){ |
| 4701 | BEGIN_CPP11 |
| 4702 | arrow::r::Input<SEXP>::type x(x_sexp); |
| 4703 | arrow::r::Input<SEXP>::type s_type(s_type_sexp); |
| 4704 | return cpp11::as_sexp(vec_to_Array(x, s_type)); |
| 4705 | END_CPP11 |
| 4706 | } |
| 4707 | // r_to_arrow.cpp |
| 4708 | 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); |
| 4709 | extern "C" SEXP _arrow_DictionaryArray__FromArrays(SEXP type_sexp, SEXP indices_sexp, SEXP dict_sexp){ |
nothing calls this directly
no test coverage detected