| 136 | // array.cpp |
| 137 | std::string Array__ToString(const std::shared_ptr<arrow::Array>& x); |
| 138 | extern "C" SEXP _arrow_Array__ToString(SEXP x_sexp){ |
| 139 | BEGIN_CPP11 |
| 140 | arrow::r::Input<const std::shared_ptr<arrow::Array>&>::type x(x_sexp); |
| 141 | return cpp11::as_sexp(Array__ToString(x)); |
| 142 | END_CPP11 |
| 143 | } |
| 144 | // array.cpp |
| 145 | arrow::Type::type Array__type_id(const std::shared_ptr<arrow::Array>& x); |
| 146 | extern "C" SEXP _arrow_Array__type_id(SEXP x_sexp){ |
nothing calls this directly
no test coverage detected