| 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){ |
| 262 | BEGIN_CPP11 |
| 263 | arrow::r::Input<const std::shared_ptr<arrow::StructArray>&>::type array(array_sexp); |
| 264 | return cpp11::as_sexp(StructArray__Flatten(array)); |
| 265 | END_CPP11 |
| 266 | } |
| 267 | // array.cpp |
| 268 | std::shared_ptr<arrow::DataType> ListArray__value_type(const std::shared_ptr<arrow::ListArray>& array); |
| 269 | extern "C" SEXP _arrow_ListArray__value_type(SEXP array_sexp){ |
nothing calls this directly
no test coverage detected