| 5146 | // scalar.cpp |
| 5147 | std::shared_ptr<arrow::Scalar> Array__GetScalar(const std::shared_ptr<arrow::Array>& x, int64_t i); |
| 5148 | extern "C" SEXP _arrow_Array__GetScalar(SEXP x_sexp, SEXP i_sexp){ |
| 5149 | BEGIN_CPP11 |
| 5150 | arrow::r::Input<const std::shared_ptr<arrow::Array>&>::type x(x_sexp); |
| 5151 | arrow::r::Input<int64_t>::type i(i_sexp); |
| 5152 | return cpp11::as_sexp(Array__GetScalar(x, i)); |
| 5153 | END_CPP11 |
| 5154 | } |
| 5155 | // scalar.cpp |
| 5156 | std::string Scalar__ToString(const std::shared_ptr<arrow::Scalar>& s); |
| 5157 | extern "C" SEXP _arrow_Scalar__ToString(SEXP s_sexp){ |
nothing calls this directly
no test coverage detected