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

Function _arrow_vec_to_Array

r/src/arrowExports.cpp:4700–4706  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4698// r_to_arrow.cpp
4699SEXP vec_to_Array(SEXP x, SEXP s_type);
4700extern "C" SEXP _arrow_vec_to_Array(SEXP x_sexp, SEXP s_type_sexp){
4701BEGIN_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));
4705END_CPP11
4706}
4707// r_to_arrow.cpp
4708std::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);
4709extern "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