| 199 | // array.cpp |
| 200 | std::shared_ptr<arrow::Array> Array__View(const std::shared_ptr<arrow::Array>& array, const std::shared_ptr<arrow::DataType>& type); |
| 201 | extern "C" SEXP _arrow_Array__View(SEXP array_sexp, SEXP type_sexp){ |
| 202 | BEGIN_CPP11 |
| 203 | arrow::r::Input<const std::shared_ptr<arrow::Array>&>::type array(array_sexp); |
| 204 | arrow::r::Input<const std::shared_ptr<arrow::DataType>&>::type type(type_sexp); |
| 205 | return cpp11::as_sexp(Array__View(array, type)); |
| 206 | END_CPP11 |
| 207 | } |
| 208 | // array.cpp |
| 209 | void Array__Validate(const std::shared_ptr<arrow::Array>& array); |
| 210 | extern "C" SEXP _arrow_Array__Validate(SEXP array_sexp){ |
nothing calls this directly
no test coverage detected