| 3529 | // filesystem.cpp |
| 3530 | std::shared_ptr<arrow::io::OutputStream> fs___FileSystem__OpenAppendStream(const std::shared_ptr<fs::FileSystem>& file_system, const std::string& path); |
| 3531 | extern "C" SEXP _arrow_fs___FileSystem__OpenAppendStream(SEXP file_system_sexp, SEXP path_sexp){ |
| 3532 | BEGIN_CPP11 |
| 3533 | arrow::r::Input<const std::shared_ptr<fs::FileSystem>&>::type file_system(file_system_sexp); |
| 3534 | arrow::r::Input<const std::string&>::type path(path_sexp); |
| 3535 | return cpp11::as_sexp(fs___FileSystem__OpenAppendStream(file_system, path)); |
| 3536 | END_CPP11 |
| 3537 | } |
| 3538 | // filesystem.cpp |
| 3539 | std::string fs___FileSystem__type_name(const std::shared_ptr<fs::FileSystem>& file_system); |
| 3540 | extern "C" SEXP _arrow_fs___FileSystem__type_name(SEXP file_system_sexp){ |
nothing calls this directly
no test coverage detected