| 5024 | // recordbatchreader.cpp |
| 5025 | std::shared_ptr<arrow::RecordBatchReader> RecordBatchReader__Head(const std::shared_ptr<arrow::RecordBatchReader>& reader, int64_t num_rows); |
| 5026 | extern "C" SEXP _arrow_RecordBatchReader__Head(SEXP reader_sexp, SEXP num_rows_sexp){ |
| 5027 | BEGIN_CPP11 |
| 5028 | arrow::r::Input<const std::shared_ptr<arrow::RecordBatchReader>&>::type reader(reader_sexp); |
| 5029 | arrow::r::Input<int64_t>::type num_rows(num_rows_sexp); |
| 5030 | return cpp11::as_sexp(RecordBatchReader__Head(reader, num_rows)); |
| 5031 | END_CPP11 |
| 5032 | } |
| 5033 | // recordbatchreader.cpp |
| 5034 | std::shared_ptr<arrow::RecordBatchReader> MakeSafeRecordBatchReader(const std::shared_ptr<arrow::RecordBatchReader>& reader); |
| 5035 | extern "C" SEXP _arrow_MakeSafeRecordBatchReader(SEXP reader_sexp){ |
nothing calls this directly
no test coverage detected