| 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){ |
| 5201 | BEGIN_CPP11 |
| 5202 | arrow::r::Input<const std::shared_ptr<arrow::Scalar>&>::type s(s_sexp); |
| 5203 | return cpp11::as_sexp(Scalar__ToString(s)); |
| 5204 | END_CPP11 |
| 5205 | } |
| 5206 | // scalar.cpp |
| 5207 | std::shared_ptr<arrow::Scalar> StructScalar__field(const std::shared_ptr<arrow::StructScalar>& s, int i); |
| 5208 | extern "C" SEXP _arrow_StructScalar__field(SEXP s_sexp, SEXP i_sexp){ |
nothing calls this directly
no test coverage detected