| 5189 | // scalar.cpp |
| 5190 | std::shared_ptr<arrow::Scalar> Array__GetScalar(const std::shared_ptr<arrow::Array>& x, int64_t i); |
| 5191 | extern "C" SEXP _arrow_Array__GetScalar(SEXP x_sexp, SEXP i_sexp){ |
| 5192 | BEGIN_CPP11 |
| 5193 | arrow::r::Input<const std::shared_ptr<arrow::Array>&>::type x(x_sexp); |
| 5194 | arrow::r::Input<int64_t>::type i(i_sexp); |
| 5195 | return cpp11::as_sexp(Array__GetScalar(x, i)); |
| 5196 | END_CPP11 |
| 5197 | } |
| 5198 | // scalar.cpp |
| 5199 | std::string Scalar__ToString(const std::shared_ptr<arrow::Scalar>& s); |
| 5200 | extern "C" SEXP _arrow_Scalar__ToString(SEXP s_sexp){ |
nothing calls this directly
no test coverage detected