| 4888 | // recordbatch.cpp |
| 4889 | std::shared_ptr<arrow::RecordBatch> RecordBatch__from_arrays(SEXP schema_sxp, SEXP lst); |
| 4890 | extern "C" SEXP _arrow_RecordBatch__from_arrays(SEXP schema_sxp_sexp, SEXP lst_sexp){ |
| 4891 | BEGIN_CPP11 |
| 4892 | arrow::r::Input<SEXP>::type schema_sxp(schema_sxp_sexp); |
| 4893 | arrow::r::Input<SEXP>::type lst(lst_sexp); |
| 4894 | return cpp11::as_sexp(RecordBatch__from_arrays(schema_sxp, lst)); |
| 4895 | END_CPP11 |
| 4896 | } |
| 4897 | // recordbatch.cpp |
| 4898 | r_vec_size RecordBatch__ReferencedBufferSize(const std::shared_ptr<arrow::RecordBatch>& batch); |
| 4899 | extern "C" SEXP _arrow_RecordBatch__ReferencedBufferSize(SEXP batch_sexp){ |
nothing calls this directly
no test coverage detected