| 3486 | // filesystem.cpp |
| 3487 | std::shared_ptr<arrow::io::OutputStream> fs___FileSystem__OpenAppendStream(const std::shared_ptr<fs::FileSystem>& file_system, const std::string& path); |
| 3488 | extern "C" SEXP _arrow_fs___FileSystem__OpenAppendStream(SEXP file_system_sexp, SEXP path_sexp){ |
| 3489 | BEGIN_CPP11 |
| 3490 | arrow::r::Input<const std::shared_ptr<fs::FileSystem>&>::type file_system(file_system_sexp); |
| 3491 | arrow::r::Input<const std::string&>::type path(path_sexp); |
| 3492 | return cpp11::as_sexp(fs___FileSystem__OpenAppendStream(file_system, path)); |
| 3493 | END_CPP11 |
| 3494 | } |
| 3495 | // filesystem.cpp |
| 3496 | std::string fs___FileSystem__type_name(const std::shared_ptr<fs::FileSystem>& file_system); |
| 3497 | extern "C" SEXP _arrow_fs___FileSystem__type_name(SEXP file_system_sexp){ |
nothing calls this directly
no test coverage detected