| 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){ |
| 5158 | BEGIN_CPP11 |
| 5159 | arrow::r::Input<const std::shared_ptr<arrow::Scalar>&>::type s(s_sexp); |
| 5160 | return cpp11::as_sexp(Scalar__ToString(s)); |
| 5161 | END_CPP11 |
| 5162 | } |
| 5163 | // scalar.cpp |
| 5164 | std::shared_ptr<arrow::Scalar> StructScalar__field(const std::shared_ptr<arrow::StructScalar>& s, int i); |
| 5165 | extern "C" SEXP _arrow_StructScalar__field(SEXP s_sexp, SEXP i_sexp){ |
nothing calls this directly
no test coverage detected