| 161 | // array.cpp |
| 162 | bool Array__ApproxEquals(const std::shared_ptr<arrow::Array>& lhs, const std::shared_ptr<arrow::Array>& rhs); |
| 163 | extern "C" SEXP _arrow_Array__ApproxEquals(SEXP lhs_sexp, SEXP rhs_sexp){ |
| 164 | BEGIN_CPP11 |
| 165 | arrow::r::Input<const std::shared_ptr<arrow::Array>&>::type lhs(lhs_sexp); |
| 166 | arrow::r::Input<const std::shared_ptr<arrow::Array>&>::type rhs(rhs_sexp); |
| 167 | return cpp11::as_sexp(Array__ApproxEquals(lhs, rhs)); |
| 168 | END_CPP11 |
| 169 | } |
| 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){ |
nothing calls this directly
no test coverage detected