| 251 | // array.cpp |
| 252 | std::shared_ptr<arrow::StructArray> StructArray__from_RecordBatch(const std::shared_ptr<arrow::RecordBatch>& batch); |
| 253 | extern "C" SEXP _arrow_StructArray__from_RecordBatch(SEXP batch_sexp){ |
| 254 | BEGIN_CPP11 |
| 255 | arrow::r::Input<const std::shared_ptr<arrow::RecordBatch>&>::type batch(batch_sexp); |
| 256 | return cpp11::as_sexp(StructArray__from_RecordBatch(batch)); |
| 257 | END_CPP11 |
| 258 | } |
| 259 | // array.cpp |
| 260 | cpp11::list StructArray__Flatten(const std::shared_ptr<arrow::StructArray>& array); |
| 261 | extern "C" SEXP _arrow_StructArray__Flatten(SEXP array_sexp){ |
nothing calls this directly
no test coverage detected