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

Function _arrow_RecordBatch__to_dataframe

r/src/arrowExports.cpp:445–451  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

443// array_to_vector.cpp
444cpp11::writable::list RecordBatch__to_dataframe(const std::shared_ptr<arrow::RecordBatch>& batch, bool use_threads);
445extern "C" SEXP _arrow_RecordBatch__to_dataframe(SEXP batch_sexp, SEXP use_threads_sexp){
446BEGIN_CPP11
447 arrow::r::Input<const std::shared_ptr<arrow::RecordBatch>&>::type batch(batch_sexp);
448 arrow::r::Input<bool>::type use_threads(use_threads_sexp);
449 return cpp11::as_sexp(RecordBatch__to_dataframe(batch, use_threads));
450END_CPP11
451}
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){

Callers

nothing calls this directly

Calls 2

as_sexpFunction · 0.85

Tested by

no test coverage detected