[[arrow::export]]
| 73 | |
| 74 | // [[arrow::export]] |
| 75 | SEXP csv___ReadOptions__column_names( |
| 76 | const std::shared_ptr<arrow::csv::ReadOptions>& options) { |
| 77 | if (options->autogenerate_column_names) { |
| 78 | return R_NilValue; |
| 79 | } |
| 80 | |
| 81 | return cpp11::as_sexp(options->column_names); |
| 82 | } |
| 83 | |
| 84 | // [[arrow::export]] |
| 85 | SEXP csv___ReadOptions__block_size( |
no test coverage detected