| 3368 | // filesystem.cpp |
| 3369 | cpp11::list fs___FileSystem__GetTargetInfos_Paths(const std::shared_ptr<fs::FileSystem>& file_system, const std::vector<std::string>& paths); |
| 3370 | extern "C" SEXP _arrow_fs___FileSystem__GetTargetInfos_Paths(SEXP file_system_sexp, SEXP paths_sexp){ |
| 3371 | BEGIN_CPP11 |
| 3372 | arrow::r::Input<const std::shared_ptr<fs::FileSystem>&>::type file_system(file_system_sexp); |
| 3373 | arrow::r::Input<const std::vector<std::string>&>::type paths(paths_sexp); |
| 3374 | return cpp11::as_sexp(fs___FileSystem__GetTargetInfos_Paths(file_system, paths)); |
| 3375 | END_CPP11 |
| 3376 | } |
| 3377 | // filesystem.cpp |
| 3378 | cpp11::list fs___FileSystem__GetTargetInfos_FileSelector(const std::shared_ptr<fs::FileSystem>& file_system, const std::shared_ptr<fs::FileSelector>& selector); |
| 3379 | extern "C" SEXP _arrow_fs___FileSystem__GetTargetInfos_FileSelector(SEXP file_system_sexp, SEXP selector_sexp){ |
nothing calls this directly
no test coverage detected