| 4804 | // recordbatch.cpp |
| 4805 | std::shared_ptr<arrow::RecordBatch> RecordBatch__AddColumn(const std::shared_ptr<arrow::RecordBatch>& batch, int i, const std::shared_ptr<arrow::Field>& field, const std::shared_ptr<arrow::Array>& column); |
| 4806 | extern "C" SEXP _arrow_RecordBatch__AddColumn(SEXP batch_sexp, SEXP i_sexp, SEXP field_sexp, SEXP column_sexp){ |
| 4807 | BEGIN_CPP11 |
| 4808 | arrow::r::Input<const std::shared_ptr<arrow::RecordBatch>&>::type batch(batch_sexp); |
| 4809 | arrow::r::Input<int>::type i(i_sexp); |
| 4810 | arrow::r::Input<const std::shared_ptr<arrow::Field>&>::type field(field_sexp); |
| 4811 | arrow::r::Input<const std::shared_ptr<arrow::Array>&>::type column(column_sexp); |
| 4812 | return cpp11::as_sexp(RecordBatch__AddColumn(batch, i, field, column)); |
| 4813 | END_CPP11 |
| 4814 | } |
| 4815 | // recordbatch.cpp |
| 4816 | std::shared_ptr<arrow::RecordBatch> RecordBatch__SetColumn(const std::shared_ptr<arrow::RecordBatch>& batch, int i, const std::shared_ptr<arrow::Field>& field, const std::shared_ptr<arrow::Array>& column); |
| 4817 | extern "C" SEXP _arrow_RecordBatch__SetColumn(SEXP batch_sexp, SEXP i_sexp, SEXP field_sexp, SEXP column_sexp){ |
nothing calls this directly
no test coverage detected