| 170 | // array.cpp |
| 171 | std::string Array__Diff(const std::shared_ptr<arrow::Array>& lhs, const std::shared_ptr<arrow::Array>& rhs); |
| 172 | extern "C" SEXP _arrow_Array__Diff(SEXP lhs_sexp, SEXP rhs_sexp){ |
| 173 | BEGIN_CPP11 |
| 174 | arrow::r::Input<const std::shared_ptr<arrow::Array>&>::type lhs(lhs_sexp); |
| 175 | arrow::r::Input<const std::shared_ptr<arrow::Array>&>::type rhs(rhs_sexp); |
| 176 | return cpp11::as_sexp(Array__Diff(lhs, rhs)); |
| 177 | END_CPP11 |
| 178 | } |
| 179 | // array.cpp |
| 180 | std::shared_ptr<arrow::ArrayData> Array__data(const std::shared_ptr<arrow::Array>& array); |
| 181 | extern "C" SEXP _arrow_Array__data(SEXP array_sexp){ |
nothing calls this directly
no test coverage detected