| 1386 | // config.cpp |
| 1387 | void set_timezone_database(cpp11::strings path); |
| 1388 | extern "C" SEXP _arrow_set_timezone_database(SEXP path_sexp){ |
| 1389 | BEGIN_CPP11 |
| 1390 | arrow::r::Input<cpp11::strings>::type path(path_sexp); |
| 1391 | set_timezone_database(path); |
| 1392 | return R_NilValue; |
| 1393 | END_CPP11 |
| 1394 | } |
| 1395 | // csv.cpp |
| 1396 | std::shared_ptr<arrow::csv::WriteOptions> csv___WriteOptions__initialize(cpp11::list options); |
| 1397 | extern "C" SEXP _arrow_csv___WriteOptions__initialize(SEXP options_sexp){ |
nothing calls this directly
no test coverage detected