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

Function _arrow_Table__to_dataframe

r/src/arrowExports.cpp:454–460  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

452// array_to_vector.cpp
453cpp11::writable::list Table__to_dataframe(const std::shared_ptr<arrow::Table>& table, bool use_threads);
454extern "C" SEXP _arrow_Table__to_dataframe(SEXP table_sexp, SEXP use_threads_sexp){
455BEGIN_CPP11
456 arrow::r::Input<const std::shared_ptr<arrow::Table>&>::type table(table_sexp);
457 arrow::r::Input<bool>::type use_threads(use_threads_sexp);
458 return cpp11::as_sexp(Table__to_dataframe(table, use_threads));
459END_CPP11
460}
461// arraydata.cpp
462std::shared_ptr<arrow::DataType> ArrayData__get_type(const std::shared_ptr<arrow::ArrayData>& x);
463extern "C" SEXP _arrow_ArrayData__get_type(SEXP x_sexp){

Callers

nothing calls this directly

Calls 2

as_sexpFunction · 0.85
Table__to_dataframeFunction · 0.85

Tested by

no test coverage detected