MCPcopy Create free account
hub / github.com/apache/arrow / _arrow_vec_to_Array

Function _arrow_vec_to_Array

r/src/arrowExports.cpp:4743–4749  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4741// r_to_arrow.cpp
4742SEXP vec_to_Array(SEXP x, SEXP s_type);
4743extern "C" SEXP _arrow_vec_to_Array(SEXP x_sexp, SEXP s_type_sexp){
4744BEGIN_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));
4748END_CPP11
4749}
4750// r_to_arrow.cpp
4751std::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);
4752extern "C" SEXP _arrow_DictionaryArray__FromArrays(SEXP type_sexp, SEXP indices_sexp, SEXP dict_sexp){

Callers

nothing calls this directly

Calls 2

as_sexpFunction · 0.85
vec_to_ArrayFunction · 0.85

Tested by

no test coverage detected