| 5258 | // scalar.cpp |
| 5259 | bool Scalar__ApproxEquals(const std::shared_ptr<arrow::Scalar>& lhs, const std::shared_ptr<arrow::Scalar>& rhs); |
| 5260 | extern "C" SEXP _arrow_Scalar__ApproxEquals(SEXP lhs_sexp, SEXP rhs_sexp){ |
| 5261 | BEGIN_CPP11 |
| 5262 | arrow::r::Input<const std::shared_ptr<arrow::Scalar>&>::type lhs(lhs_sexp); |
| 5263 | arrow::r::Input<const std::shared_ptr<arrow::Scalar>&>::type rhs(rhs_sexp); |
| 5264 | return cpp11::as_sexp(Scalar__ApproxEquals(lhs, rhs)); |
| 5265 | END_CPP11 |
| 5266 | } |
| 5267 | // schema.cpp |
| 5268 | std::shared_ptr<arrow::Schema> Schema__from_fields(const std::vector<std::shared_ptr<arrow::Field>>& fields); |
| 5269 | extern "C" SEXP _arrow_Schema__from_fields(SEXP fields_sexp){ |
nothing calls this directly
no test coverage detected