| 3502 | // filesystem.cpp |
| 3503 | std::shared_ptr<arrow::io::InputStream> fs___FileSystem__OpenInputStream(const std::shared_ptr<fs::FileSystem>& file_system, const std::string& path); |
| 3504 | extern "C" SEXP _arrow_fs___FileSystem__OpenInputStream(SEXP file_system_sexp, SEXP path_sexp){ |
| 3505 | BEGIN_CPP11 |
| 3506 | arrow::r::Input<const std::shared_ptr<fs::FileSystem>&>::type file_system(file_system_sexp); |
| 3507 | arrow::r::Input<const std::string&>::type path(path_sexp); |
| 3508 | return cpp11::as_sexp(fs___FileSystem__OpenInputStream(file_system, path)); |
| 3509 | END_CPP11 |
| 3510 | } |
| 3511 | // filesystem.cpp |
| 3512 | std::shared_ptr<arrow::io::RandomAccessFile> fs___FileSystem__OpenInputFile(const std::shared_ptr<fs::FileSystem>& file_system, const std::string& path); |
| 3513 | extern "C" SEXP _arrow_fs___FileSystem__OpenInputFile(SEXP file_system_sexp, SEXP path_sexp){ |
nothing calls this directly
no test coverage detected