| 1574 | #if defined(ARROW_R_WITH_DATASET) |
| 1575 | std::shared_ptr<arrow::Schema> dataset___Dataset__schema(const std::shared_ptr<ds::Dataset>& dataset); |
| 1576 | extern "C" SEXP _arrow_dataset___Dataset__schema(SEXP dataset_sexp){ |
| 1577 | BEGIN_CPP11 |
| 1578 | arrow::r::Input<const std::shared_ptr<ds::Dataset>&>::type dataset(dataset_sexp); |
| 1579 | return cpp11::as_sexp(dataset___Dataset__schema(dataset)); |
| 1580 | END_CPP11 |
| 1581 | } |
| 1582 | #else |
| 1583 | extern "C" SEXP _arrow_dataset___Dataset__schema(SEXP dataset_sexp){ |
| 1584 | Rf_error("Cannot call dataset___Dataset__schema(). See https://arrow.apache.org/docs/r/articles/install.html for help installing Arrow C++ libraries. "); |
nothing calls this directly
no test coverage detected